Commit 72b9e70d authored by Pierre d'Herbemont's avatar Pierre d'Herbemont

meta.c: Fix the boolean expression. (I should get some sleep 2)

parent 8c31f9c2
......@@ -334,7 +334,7 @@ int input_DownloadAndCacheArt( playlist_t *p_playlist, input_item_t *p_item )
else if( p_item->psz_name )
psz_title = ArtCacheCreateString( p_item->psz_name );
if( !psz_title || ( !psz_artist && !psz_album) )
if( !psz_title && (!psz_artist || !psz_album) )
{
free( psz_title );
free( psz_album );
......
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