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

Remove superfluous (as in implied by the previous one) condition

parent 9964dee4
...@@ -914,10 +914,8 @@ playlist_item_t *E_(MRLParse)( intf_thread_t *p_intf, char *psz, ...@@ -914,10 +914,8 @@ playlist_item_t *E_(MRLParse)( intf_thread_t *p_intf, char *psz,
playlist_item_t * p_item = NULL; playlist_item_t * p_item = NULL;
/* In case there is spaces before the mrl */ /* In case there is spaces before the mrl */
while( ( *s_mrl == ' ' ) && ( *s_mrl != '\0' ) ) while( *s_mrl == ' ' )
{
s_mrl++; s_mrl++;
}
/* extract the mrl */ /* extract the mrl */
s_temp = strstr( s_mrl , " :" ); s_temp = strstr( s_mrl , " :" );
......
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