From: Rafaël Carré Date: Sun, 18 Nov 2007 18:03:25 +0000 (+0000) Subject: xspf muxer: %encode '+' since decode_URI() will decode it as a space X-Git-Tag: 0.9.0-test0~4541 X-Git-Url: https://git.videolan.org/gitweb.cgi/vlc.git/?p=vlc.git;p=vlc.git;a=commitdiff_plain;h=0d48e825e57556bd8240806dafb320b6fa8b5517 xspf muxer: %encode '+' since decode_URI() will decode it as a space --- diff --git a/modules/misc/playlist/xspf.c b/modules/misc/playlist/xspf.c index 2a3bc2252d..02d603ca87 100644 --- a/modules/misc/playlist/xspf.c +++ b/modules/misc/playlist/xspf.c @@ -336,6 +336,7 @@ static char *assertUTF8URI( char *psz_name ) *psz_s == '[' || *psz_s == ']' || *psz_s == '@' || + *psz_s == '+' || *psz_s == '%' ) ) )