Revert "json: also escape '/' as required by JSON"

This reverts commit eb8546a682.

We don't need to escape the / according to  RFC7159
This commit is contained in:
Wim Taymans 2021-06-24 16:12:30 +02:00
parent 679df3f9d9
commit 2acf29a86c

View file

@ -389,7 +389,6 @@ static inline int spa_json_encode_string(char *str, int size, const char *val)
break;
case '\\':
case '"':
case '/':
__PUT('\\'); __PUT(*val);
break;
default: