diff options
Diffstat (limited to 'src/song.c')
-rw-r--r-- | src/song.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/song.c b/src/song.c index 8651a0100..067ce440a 100644 --- a/src/song.c +++ b/src/song.c @@ -202,6 +202,7 @@ static void insertSongIntoList(SongList * list, ListNode ** nextSongNode, Song *tempSong = (Song *) ((*nextSongNode)->data); if (tempSong->mtime != song->mtime) { tag_free(tempSong->tag); + tag_end_add(song->tag); tempSong->tag = song->tag; tempSong->mtime = song->mtime; song->tag = NULL; |