mirror of
https://github.com/DBD-SQLite/DBD-SQLite
synced 2025-06-07 14:19:10 -04:00
wrong condition
This commit is contained in:
parent
30158101ef
commit
2c973413b6
1 changed files with 1 additions and 1 deletions
2
dbdimp.c
2
dbdimp.c
|
@ -153,7 +153,7 @@ sqlite_is_number(pTHX_ const char *v)
|
|||
if (c == 0) {
|
||||
c = tmp[18] - '8';
|
||||
}
|
||||
if (c < neg) return 0;
|
||||
if (c >= neg) return 0;
|
||||
}
|
||||
if (*z == '.') {
|
||||
z++;
|
||||
|
|
Loading…
Add table
Reference in a new issue