1
0
mirror of https://github.com/sqlite/sqlite.git synced 2025-08-08 14:02:16 +03:00

Terminate the va_start in the getDigits function of date.c. (CVS 2931)

FossilOrigin-Name: 94eac140f2363c7c3df68fa6f46728abfbfee1e6
This commit is contained in:
drh
2006-01-13 01:17:21 +00:00
parent a97fdd3bfc
commit 24b010fad1
3 changed files with 9 additions and 8 deletions

View File

@@ -16,7 +16,7 @@
** sqlite3RegisterDateTimeFunctions() found at the bottom of the file.
** All other code has file scope.
**
** $Id: date.c,v 1.49 2006/01/09 00:18:03 drh Exp $
** $Id: date.c,v 1.50 2006/01/13 01:17:21 drh Exp $
**
** NOTES:
**
@@ -117,6 +117,7 @@ static int getDigits(const char *zDate, ...){
zDate++;
cnt++;
}while( nextC );
va_end(ap);
return cnt;
}