# HG changeset patch # User ib # Date 1354110384 0 # Node ID e93282a4e332d61dd9f825cbce38430fef348624 # Parent f9c4c37a7a43def495c8812846738dfc706d7e10 Remove variable assignment. It's an unused pointer value, because this dummy node won't be referred to. (It will be found by its value NULL user data later.) diff -r f9c4c37a7a43 -r e93282a4e332 gui/ui/gtk/playlist.c --- a/gui/ui/gtk/playlist.c Wed Nov 28 12:23:28 2012 +0000 +++ b/gui/ui/gtk/playlist.c Wed Nov 28 13:46:24 2012 +0000 @@ -397,7 +397,7 @@ subdir=check_for_subdir( path ); node=gtk_ctree_insert_node( ctree,parent_node,NULL,(name ? &name : &text ),4,pxOpenedBook,msOpenedBook,pxClosedBook,msClosedBook,!subdir,FALSE ); gtk_ctree_node_set_row_data_full( ctree,node,DirNode,NULL ); - if ( subdir ) node=gtk_ctree_insert_node( ctree,node,NULL,&dummy,4,NULL,NULL,NULL,NULL,FALSE,FALSE ); + if ( subdir ) gtk_ctree_insert_node( ctree,node,NULL,&dummy,4,NULL,NULL,NULL,NULL,FALSE,FALSE ); } free( path ); path=NULL; }