mirror of
https://gitlab.freedesktop.org/pipewire/pipewire.git
synced 2025-11-02 09:01:50 -05:00
json: don't escape /
This commit is contained in:
parent
2acf29a86c
commit
016f02616b
2 changed files with 1 additions and 2 deletions
|
|
@ -57,7 +57,7 @@ static void encode_string(FILE *f, const char *val, int len)
|
|||
case '\f':
|
||||
fprintf(f, "\\f");
|
||||
break;
|
||||
case '\\': case '"': case '/':
|
||||
case '\\': case '"':
|
||||
fprintf(f, "\\%c", v);
|
||||
break;
|
||||
default:
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue