diff options
Diffstat (limited to 'src/tag.c')
-rw-r--r-- | src/tag.c | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -489,9 +489,8 @@ MpdTag *newMpdTag(void) static void deleteItem(MpdTag * tag, int index) { - tag->numOfItems--; - assert(index < tag->numOfItems); + tag->numOfItems--; removeTagItemString(tag->items[index].type, tag->items[index].value); /* free(tag->items[index].value); */ |