1
0
mirror of https://github.com/stedolan/jq.git synced 2024-05-11 05:55:39 +00:00

Fix bug caused by 8ca07a0

This commit is contained in:
Nicolas Williams
2014-12-24 02:24:53 -06:00
parent 8ca07a08c3
commit 1cdcff1c01

View File

@ -257,7 +257,7 @@ static pfunc found_string(struct jv_parser* p) {
return "Invalid escape"; return "Invalid escape";
} }
} else { } else {
if (c < 0x001f) if (c > 0 && c < 0x001f)
return "Invalid string: control characters from U+0000 through U+001F must be escaped"; return "Invalid string: control characters from U+0000 through U+001F must be escaped";
*out++ = c; *out++ = c;
} }