mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 14:19:10 -04:00
correct pointer
This commit is contained in:
parent
46443af248
commit
31eb5bf760
1 changed files with 0 additions and 1 deletions
1
dbdimp.c
1
dbdimp.c
|
@ -186,7 +186,6 @@ sqlite_is_number(pTHX_ const char *v, int sql_type)
|
|||
else if (*z == '+') { neg = 0; z++; d++; has_plus = 1; }
|
||||
else { neg = 0; }
|
||||
if (!isdigit(*z)) return 0;
|
||||
z++;
|
||||
while (isdigit(*z)) { digit++; z++; }
|
||||
#if defined(USE_64_BIT_INT)
|
||||
if (digit > 19) return 0; /* too large for i64 */
|
||||
|
|
Loading…
Add table
Reference in a new issue