Commit da48f25f authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

Revert [20459] and really fix (I hope)

parent 7a2a1077
......@@ -2547,7 +2547,7 @@ static inline vlc_bool_t IsValidAccess( const char *psz )
if( c == ':' )
return VLC_TRUE;
if( !isascii( c ) && !isalnum( c ) && c != '/' )
if( ( !isascii( c ) || !isalnum( c ) ) && ( c != '/' ) )
return VLC_FALSE;
psz++;
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment