mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-12-15 08:56:38 -05: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;
|
iter->state = __UTF8 | flag;
|
||||||
continue;
|
continue;
|
||||||
default:
|
default:
|
||||||
if (cur >= 32 && cur <= 126)
|
if (cur >= 32 && cur <= 127)
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
goto error;
|
goto error;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue