git.videolan.org
/
vlc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
8c31f9c
)
meta.c: Fix the boolean expression. (I should get some sleep 2)
author
Pierre d'Herbemont
<pdherbemont@videolan.org>
Sat, 18 Aug 2007 14:08:34 +0000
(14:08 +0000)
committer
Pierre d'Herbemont
<pdherbemont@videolan.org>
Sat, 18 Aug 2007 14:08:34 +0000
(14:08 +0000)
src/input/meta.c
patch
|
blob
|
history
diff --git
a/src/input/meta.c
b/src/input/meta.c
index
94f5705
..
e2c73ba
100644
(file)
--- a/
src/input/meta.c
+++ b/
src/input/meta.c
@@
-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 );