Code

utils: removed filelist_get()!=NULL check
authorMax Kellermann <max@duempel.org>
Sat, 3 Oct 2009 16:32:17 +0000 (18:32 +0200)
committerMax Kellermann <max@duempel.org>
Sat, 3 Oct 2009 16:32:17 +0000 (18:32 +0200)
A filelist object can never have NULL objects (but an entry's entity
object may be NULL).

src/utils.c

index 857e15d9baa7c63f5677345e8deb87e704484e82..7864132a2514158b937451cd926658dcc037c268 100644 (file)
@@ -84,8 +84,8 @@ gcmp_list_from_path(struct mpdclient *c, const gchar *path,
                return list;
 
        for (i = 0; i < filelist_length(filelist); ++i) {
-               const struct filelist_entry *entry = filelist_get(filelist, i);
-               const struct mpd_entity *entity = entry ? entry->entity : NULL;
+               const struct mpd_entity *entity =
+                       filelist_get(filelist, i)->entity;
                char *name = NULL;
 
                if (entity != NULL &&