# HG changeset patch # User ib # Date 1355237553 0 # Node ID af20559e55c98383768ba0782b3c5866a9b2f9ab # Parent 0827fa4c34018918f31c35b8870abec451d5e9ee Adapt assignments. This better matches the if branch. diff -r 0827fa4c3401 -r af20559e55c9 gui/dialog/playlist.c --- a/gui/dialog/playlist.c Tue Dec 11 14:51:17 2012 +0000 +++ b/gui/dialog/playlist.c Tue Dec 11 14:52:33 2012 +0000 @@ -202,7 +202,11 @@ 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