[MPlayer-cvslog] r35667 - trunk/gui/dialog/playlist.c
ib
subversion at mplayerhq.hu
Tue Dec 11 15:52:34 CET 2012
Author: ib
Date: Tue Dec 11 15:52:33 2012
New Revision: 35667
Log:
Adapt assignments.
This better matches the if branch.
Modified:
trunk/gui/dialog/playlist.c
Modified: trunk/gui/dialog/playlist.c
==============================================================================
--- trunk/gui/dialog/playlist.c Tue Dec 11 15:51:17 2012 (r35666)
+++ trunk/gui/dialog/playlist.c Tue Dec 11 15:52:33 2012 (r35667)
@@ -202,7 +202,11 @@ static void plButtonReleased( GtkButton
curr.path = gstrdup(item->path);
curr.name = gstrdup(item->name);
}
- else curr.path = curr.name = NULL;
+ else
+ {
+ curr.path = NULL;
+ curr.name = NULL;
+ }
listMgr( PLAYLIST_DELETE,0 );
for ( i=0;i<NrOfSelected;i++ )
{
More information about the MPlayer-cvslog
mailing list