From 4ac6e6dff3c63ca78db052d4f0350c3ea599cbc8 Mon Sep 17 00:00:00 2001 From: =?utf8?q?R=C3=A9mi=20Denis-Courmont?= Date: Sun, 12 Jul 2009 16:49:14 +0300 Subject: [PATCH] Do not decode URI in the name. It borks some types badly. Some URI types do not need URI-encoding, yet use the percent sign. E.g. http://forum.videolan.org/viewtopic.php?f=13&t=61946 --- src/input/item.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/input/item.c b/src/input/item.c index ac6006dfa6..903e537b3f 100644 --- a/src/input/item.c +++ b/src/input/item.c @@ -408,10 +408,6 @@ void input_item_SetURI( input_item_t *p_i, const char *psz_uri ) vlc_UrlClean( &url ); if( -1==r ) p_i->psz_name=NULL; /* recover from undefined value */ - - /* Make the name more readable */ - if( p_i->psz_name ) - decode_URI( p_i->psz_name ); } vlc_mutex_unlock( &p_i->lock ); -- 2.39.5