]> git.sesse.net Git - vlc/blobdiff - src/text/strings.c
Plus sign must not be decoded in URI
[vlc] / src / text / strings.c
index 25886ff045ea889f3feb48ead457088efc5e91db..fa1b39cfe05eadc81c708c39f5147f58767dec57 100644 (file)
@@ -95,10 +95,6 @@ char *decode_URI( char *psz )
                 break;
             }
 
-            case '+': /* This is HTTP forms, not URI decoding... */
-                *out++ = ' ';
-                break;
-
             default:
                 /* Inserting non-ASCII or non-printable characters is unsafe,
                  * and no sane browser will send these unencoded */