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:
@ -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;
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user