]> git.sesse.net Git - vlc/commitdiff
FTP path must be decoded - fixes #2982.
authorRémi Denis-Courmont <remi@remlab.net>
Mon, 20 Jul 2009 15:50:11 +0000 (18:50 +0300)
committerRémi Denis-Courmont <remi@remlab.net>
Mon, 20 Jul 2009 15:59:51 +0000 (18:59 +0300)
modules/access/ftp.c

index b2d692d19229577fb6af848efefdecb2a6024d6b..78330f887106950208820ab19eaac3bdd6c34963 100644 (file)
@@ -307,7 +307,7 @@ static int parseURL( vlc_url_t *url, const char *path )
 
     if( url->psz_path && *url->psz_path == '/' )
         url->psz_path++;
-
+    decode_URI( url->psz_path );
     return VLC_SUCCESS;
 }