Commit 1b3c30b3 authored by Ilkka Ollakka's avatar Ilkka Ollakka

encode \ in xspf location uri also (rfc 3986 has set of characters

that can be in url without encoding, \ doesnt seem to be one of them)

relates to ticket #2218
parent 2b7a8683
......@@ -354,6 +354,7 @@ static char *assertUTF8URI( char *psz_name )
*psz_s == ' ' ||
*psz_s == '+' ||
*psz_s == '%' ||
*psz_s == '\\' ||
( b_uri_is_file && (
*psz_s == ':' ||
*psz_s == '"' ||
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment