Skip to content

Commit cb987aa

Browse files
authored
Update json_parser.c
1 parent 9c2ce52 commit cb987aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

json_parser.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ static int __json_string_length(const char *cursor)
6464
if (*cursor == '\0')
6565
return -2;
6666
}
67-
else if ((unsigned char)*cursor < ' ')
67+
else if ((unsigned char)*cursor < 0x20)
6868
return -2;
6969

7070
cursor++;

0 commit comments

Comments
 (0)