1
0
Fork 0
mirror of https://github.com/DBD-SQLite/DBD-SQLite synced 2025-06-07 22:28:47 -04:00

wrong condition

This commit is contained in:
Kenichi Ishigaki 2010-06-17 03:07:08 +00:00
parent 30158101ef
commit 2c973413b6

View file

@ -153,7 +153,7 @@ sqlite_is_number(pTHX_ const char *v)
if (c == 0) { if (c == 0) {
c = tmp[18] - '8'; c = tmp[18] - '8';
} }
if (c < neg) return 0; if (c >= neg) return 0;
} }
if (*z == '.') { if (*z == '.') {
z++; z++;