Code

filelist: song must not be NULL
[ncmpc.git] / src / filelist.c
1 /*
2  * (c) 2004 by Kalle Wallin <kaw@linux.se>
3  * (c) 2008 Max Kellermann <max@duempel.org>
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  * You should have received a copy of the GNU General Public License
15  * along with this program; if not, write to the Free Software
16  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
17  *
18  */
20 #include "filelist.h"
21 #include "libmpdclient.h"
23 #include <string.h>
24 #include <assert.h>
26 void
27 mpdclient_filelist_free(struct filelist *filelist)
28 {
29         GList *list = g_list_first(filelist->list);
31         if (list == NULL)
32                 return;
34         while (list != NULL) {
35                 filelist_entry_t *entry = list->data;
37                 if (entry->entity)
38                         mpd_freeInfoEntity(entry->entity);
40                 g_free(entry);
41                 list = list->next;
42         }
44         g_list_free(filelist->list);
45         g_free(filelist->path);
46         g_free(filelist);
47 }
49 struct filelist_entry *
50 mpdclient_filelist_find_song(struct filelist *fl,
51                              const struct mpd_song *song)
52 {
53         GList *list = g_list_first(fl->list);
55         assert(song != NULL);
57         while (list != NULL) {
58                 filelist_entry_t *entry = list->data;
59                 mpd_InfoEntity *entity  = entry->entity;
61                 if (entity && entity->type == MPD_INFO_ENTITY_TYPE_SONG) {
62                         struct mpd_song *song2 = entity->info.song;
64                         if (strcmp(song->file, song2->file) == 0)
65                                 return entry;
66                 }
68                 list = list->next;
69         }
71         return NULL;
72 }