From 0d34815f6cfe1a75467e7c8f9406ff15bcbe10ba Mon Sep 17 00:00:00 2001 From: Eric Wong Date: Tue, 7 Oct 2008 21:20:34 +0200 Subject: Assert if we don't have song or song->url set song objects cannot exist without a path or URL --- src/directory.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/directory.c') diff --git a/src/directory.c b/src/directory.c index 8eb18d463..e38a904f0 100644 --- a/src/directory.c +++ b/src/directory.c @@ -298,8 +298,8 @@ removeDeletedFromDirectory(char *path_max_tmp, Directory * directory) for (i = sv->nr; --i >= 0; ) { /* cleaner deletes if we go backwards */ Song *song = sv->base[i]; - if (!song || !*song->url) - continue; /* does this happen?, perhaps assert() */ + assert(song); + assert(*song->url); if (dirname) sprintf(path_max_tmp, "%s/%s", dirname, song->url); -- cgit v1.2.3