1
0
Fork 0
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:
Kenichi Ishigaki 2012-04-27 14:12:51 +00:00
parent 46443af248
commit 31eb5bf760

View file

@ -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 */