From d6a87f538d2347cd4610962a0004052c0c6ba8de Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Thu, 11 Nov 2004 02:59:16 +0000 Subject: ok, now song->url is only the filename, not the full path to the song git-svn-id: https://svn.musicpd.org/mpd/trunk@2602 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/tagTracker.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/tagTracker.c') diff --git a/src/tagTracker.c b/src/tagTracker.c index 30ae7641b..1fe599d79 100644 --- a/src/tagTracker.c +++ b/src/tagTracker.c @@ -27,7 +27,7 @@ char * getTagItemString(int type, char * string) { if(type == TAG_ITEM_TITLE) return strdup(string); if(tagLists[type] == NULL) { - tagLists[type] = makeList(free); + tagLists[type] = makeList(free, 1); } if((node = findNodeInList(tagLists[type], string))) { -- cgit v1.2.3