fix an overflow bug in the scanner
This commit is contained in:
parent
4636173fed
commit
b5818182a4
1 changed files with 1 additions and 1 deletions
2
toml.c
2
toml.c
|
@ -1723,7 +1723,7 @@ static int scan_string(context_t* ctx, char* p, int lineno, int dotisspecial)
|
|||
/* check for timestamp without quotes */
|
||||
if (0 == scan_date(p, 0, 0, 0) || 0 == scan_time(p, 0, 0, 0)) {
|
||||
// forward thru the timestamp
|
||||
for ( ; strchr("0123456789.:+-T Z", toupper(*p)); p++);
|
||||
for ( ; *p && strchr("0123456789.:+-T Z", toupper(*p)); p++);
|
||||
// squeeze out any spaces at end of string
|
||||
for ( ; p[-1] == ' '; p--);
|
||||
// tokenize
|
||||
|
|
Loading…
Reference in a new issue