mirror of
https://github.com/sqlite/sqlite.git
synced 2025-07-30 19:03:16 +03:00
Fix a problem in the geopoly json parser associated with spaces before a
coordinate number. FossilOrigin-Name: 9d8d3af89ab241fd6c68e043e559359c85653aa0e31270b658ff01867ae929c4
This commit is contained in:
@ -146,8 +146,8 @@ static char geopolySkipSpace(GeoParse *p){
|
||||
** return non-zero on success and zero if the next token is not a number.
|
||||
*/
|
||||
static int geopolyParseNumber(GeoParse *p, GeoCoord *pVal){
|
||||
const unsigned char *z = p->z;
|
||||
char c = geopolySkipSpace(p);
|
||||
const unsigned char *z = p->z;
|
||||
int j;
|
||||
int seenDP = 0;
|
||||
int seenE = 0;
|
||||
|
Reference in New Issue
Block a user