summaryrefslogtreecommitdiff
path: root/ext/pdo_sqlite/sqlite/src/date.c
diff options
context:
space:
mode:
authorIlia Alshanetsky <iliaa@php.net>2005-08-28 16:53:27 +0000
committerIlia Alshanetsky <iliaa@php.net>2005-08-28 16:53:27 +0000
commitc6aae12cc16e79cbeb51032f5b2822d29410c142 (patch)
tree8d91708ece9721666e4db5dca50cd74f9fba48f9 /ext/pdo_sqlite/sqlite/src/date.c
parent3a21310f37054961066eec5752775c173d1dc1d7 (diff)
downloadphp-git-c6aae12cc16e79cbeb51032f5b2822d29410c142.tar.gz
Upgraded bundled SQLite library for PDO:SQLite to 3.2.5 (step 1)
Diffstat (limited to 'ext/pdo_sqlite/sqlite/src/date.c')
-rw-r--r--ext/pdo_sqlite/sqlite/src/date.c8
1 files changed, 2 insertions, 6 deletions
diff --git a/ext/pdo_sqlite/sqlite/src/date.c b/ext/pdo_sqlite/sqlite/src/date.c
index c6872831b9..7d398df489 100644
--- a/ext/pdo_sqlite/sqlite/src/date.c
+++ b/ext/pdo_sqlite/sqlite/src/date.c
@@ -124,11 +124,7 @@ static int getDigits(const char *zDate, ...){
** Read text from z[] and convert into a floating point number. Return
** the number of digits converted.
*/
-static int getValue(const char *z, double *pR){
- const char *zEnd;
- *pR = sqlite3AtoF(z, &zEnd);
- return zEnd - z;
-}
+#define getValue sqlite3AtoF
/*
** Parse a timezone extension on the end of a date-time.
@@ -320,7 +316,7 @@ static int parseDateOrTime(const char *zDate, DateTime *p){
p->validJD = 1;
return 0;
}else if( sqlite3IsNumber(zDate, 0, SQLITE_UTF8) ){
- p->rJD = sqlite3AtoF(zDate, 0);
+ getValue(zDate, &p->rJD);
p->validJD = 1;
return 0;
}