Skip to content

Commit

Permalink
Update json_parser.c
Browse files Browse the repository at this point in the history
  • Loading branch information
Barenboim committed Jan 29, 2024
1 parent 9c2ce52 commit cb987aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion json_parser.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ static int __json_string_length(const char *cursor)
if (*cursor == '\0')
return -2;
}
else if ((unsigned char)*cursor < ' ')
else if ((unsigned char)*cursor < 0x20)
return -2;

cursor++;
Expand Down

0 comments on commit cb987aa

Please sign in to comment.