]> git.sesse.net Git - vlc/commitdiff
Oops
authorRémi Denis-Courmont <rem@videolan.org>
Mon, 27 Mar 2006 16:48:14 +0000 (16:48 +0000)
committerRémi Denis-Courmont <rem@videolan.org>
Mon, 27 Mar 2006 16:48:14 +0000 (16:48 +0000)
include/vlc_url.h

index 62646af7dcc8c92547a1f1888f57f04376cbc105..bae327f4caed16aa23fa0e25ef3ae589b320243b 100644 (file)
@@ -174,7 +174,6 @@ static inline int isurlsafe( int c )
     return ( (unsigned char)( c - 'a' ) < 26 )
         || ( (unsigned char)( c - 'A' ) < 26 )
         || ( (unsigned char)( c - '0' ) < 10 )
-        || ( (unsigned char)( c ) > 127 )
         /* Hmm, we should not encode character that are allowed in URLs
          * (even if they are not URL-safe), nor URL-safe characters.
          * We still encode some of them because of Microsoft's crap browser.