diff options
author | Warren Dukes <warren.dukes@gmail.com> | 2004-06-03 02:58:41 +0000 |
---|---|---|
committer | Warren Dukes <warren.dukes@gmail.com> | 2004-06-03 02:58:41 +0000 |
commit | c453f7dc52fcfd9233e857a690bf375330d6cfe0 (patch) | |
tree | 2b573ea7b7133cc7b0a222c77862347069cbbb2c /src/playlist.c | |
parent | 15c61f6eb06b43097678682f7022d55f4aed9ce0 (diff) | |
download | mpd-c453f7dc52fcfd9233e857a690bf375330d6cfe0.tar.gz mpd-c453f7dc52fcfd9233e857a690bf375330d6cfe0.tar.xz mpd-c453f7dc52fcfd9233e857a690bf375330d6cfe0.zip |
remove debug code, and preivous commit fixes a segfault due to a doble free on an error trying to decode mp3's
git-svn-id: https://svn.musicpd.org/mpd/trunk@1314 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r-- | src/playlist.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/playlist.c b/src/playlist.c index 1dea4b7ce..75b812338 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -825,21 +825,16 @@ void playPlaylistIfPlayerStopped() { if(error==PLAYER_ERROR_NOERROR) playlist_errorCount = 0; else playlist_errorCount++; - printf("HERE 1\n"); if(playlist_state==PLAYLIST_STATE_PLAY && ( (playlist_stopOnError && error!=PLAYER_ERROR_NOERROR) || error==PLAYER_ERROR_AUDIO || error==PLAYER_ERROR_SYSTEM || playlist_errorCount>=playlist.length)) { - printf("HERE 1-1\n"); - printf("playlist_stopOnError: %i\n", playlist_stopOnError); stopPlaylist(stderr); - printf("HERE 1-2\n"); } else if(playlist_noGoToNext) currentSongInPlaylist(stderr); else nextSongInPlaylist(stderr); - printf("HERE 2\n"); } } |