mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-10-29 05:40:27 -04:00
spa: json: \x7f is allowed unquoted in JSON
This commit is contained in:
parent
f45d89b75b
commit
11e20ef7a8
1 changed files with 1 additions and 1 deletions
|
|
@ -176,7 +176,7 @@ static inline int spa_json_next(struct spa_json * iter, const char **value)
|
|||
iter->state = __UTF8 | flag;
|
||||
continue;
|
||||
default:
|
||||
if (cur >= 32 && cur <= 126)
|
||||
if (cur >= 32 && cur <= 127)
|
||||
continue;
|
||||
}
|
||||
goto error;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue