From 33faf9812ccea04e7787d04eadf503ce1febc6b7 Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Wed, 19 May 2004 05:07:31 +0000 Subject: fix a nasty bug when deleting a stream from the playlist git-svn-id: https://svn.musicpd.org/mpd/trunk@1082 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/playlist.c | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'src/playlist.c') diff --git a/src/playlist.c b/src/playlist.c index ce7ac77df..60b40f4f9 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -138,6 +138,12 @@ void initPlaylist() { } void finishPlaylist() { + int i; + for(i=0;itype == SONG_TYPE_URL) { + /*freeJustSong(playlist.songs[i]);*/ + } + } free(playlist.songs); playlist.songs = NULL; free(playlist.order); @@ -151,7 +157,7 @@ int clearPlaylist(FILE * fp) { for(i=0;itype == SONG_TYPE_URL) { - free(playlist.songs[i]); + /*freeJustSong(playlist.songs[i]);*/ } playlist.songs[i] = NULL; } @@ -584,6 +590,10 @@ int deleteFromPlaylist(FILE * fp, int song) { } } + if(playlist.songs[song]->type == SONG_TYPE_URL) { + freeJustSong(playlist.songs[song]); + } + /* delete song from songs array */ for(i=song;isong) playlist.order[i]--; } /* now take care of other misc stuff */ - if(playlist.songs[playlist.length-1]->type == SONG_TYPE_URL) { - freeJustSong(playlist.songs[playlist.length-1]); - } playlist.songs[playlist.length-1] = NULL; playlist.length--; -- cgit v1.2.3