From abd01cf323cffaf62e11ab8b008155e339e7f1dc Mon Sep 17 00:00:00 2001 From: Kalle Wallin Date: Mon, 14 Jun 2004 21:28:18 +0000 Subject: [PATCH] Fixed mpdclient_filelist_update() git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1486 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/mpdclient.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/mpdclient.c b/src/mpdclient.c index af6476f..89ed29e 100644 --- a/src/mpdclient.c +++ b/src/mpdclient.c @@ -758,6 +758,7 @@ mpdclient_filelist_free(mpdclient_filelist_t *filelist) { GList *list = g_list_first(filelist->list); + D("mpdclient_filelist_free()\n"); while( list!=NULL ) { filelist_entry_t *entry = list->data; @@ -785,6 +786,7 @@ mpdclient_filelist_get(mpdclient_t *c, gchar *path) mpd_InfoEntity *entity; gchar *path_utf8 = locale_to_utf8(path); + D("mpdclient_filelist_get(%s)\n", path); mpd_sendLsInfoCommand(c->connection, path_utf8); filelist = g_malloc0(sizeof(mpdclient_filelist_t)); if( path && path[0] && strcmp(path, "/") ) @@ -821,7 +823,7 @@ mpdclient_filelist_get(mpdclient_t *c, gchar *path) mpdclient_filelist_t * mpdclient_filelist_update(mpdclient_t *c, mpdclient_filelist_t *filelist) { - if( filelist == NULL ) + if( filelist != NULL ) { gchar *path = g_strdup(filelist->path); -- 2.30.2