From 8fca32b12d00db3ebfbbceb8a51880e505b5a780 Mon Sep 17 00:00:00 2001 From: Warren Dukes Date: Wed, 2 Jun 2004 20:40:30 +0000 Subject: fix a segfault when deleteing the last song in the playlist and sync'ing metadata from the player git-svn-id: https://svn.musicpd.org/mpd/trunk@1306 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/playlist.c | 57 ++++++++++++++++++++++++++++++--------------------------- 1 file changed, 30 insertions(+), 27 deletions(-) (limited to 'src') diff --git a/src/playlist.c b/src/playlist.c index 4c0737d1b..75b812338 100644 --- a/src/playlist.c +++ b/src/playlist.c @@ -71,21 +71,21 @@ typedef struct _Playlist { unsigned long version; } Playlist; -Playlist playlist; -int playlist_state = PLAYLIST_STATE_STOP; -int playlist_max_length; -int playlist_stopOnError; -int playlist_errorCount = 0; -int playlist_queueError; -int playlist_noGoToNext = 0; +static Playlist playlist; +static int playlist_state = PLAYLIST_STATE_STOP; +static int playlist_max_length; +static int playlist_stopOnError; +static int playlist_errorCount = 0; +static int playlist_queueError; +static int playlist_noGoToNext = 0; -int playlist_saveAbsolutePaths; +static int playlist_saveAbsolutePaths; -char * playlist_stateFile = NULL; +static char * playlist_stateFile = NULL; -void swapOrder(int a, int b); -int playPlaylistOrderNumber(FILE * fp, int orderNum); -void randomizeOrder(int start, int end); +static void swapOrder(int a, int b); +static int playPlaylistOrderNumber(FILE * fp, int orderNum); +static void randomizeOrder(int start, int end); void incrPlaylistVersion() { static unsigned long max = ((unsigned long)1<=max) playlist.version = 0; } +static void incrPlaylistCurrent() { + if(playlist.current < 0) return; + + if(playlist.current >= playlist.length-1) { + if(playlist.repeat) playlist.current = 0; + else playlist.current = -1; + } + else playlist.current++; +} + void initPlaylist() { char * test; @@ -628,12 +638,15 @@ int deleteFromPlaylist(FILE * fp, int song) { playerStop(stderr); playlist_noGoToNext = 1; } - else if(/*playlist_state!=PLAYLIST_STATE_STOP &&*/ - playlist.current>songOrder) { + + if(playlist.current>=playlist.length) { + incrPlaylistCurrent(); + } + else if(playlist.current>songOrder) { playlist.current--; } - if(/*playlist_state!=PLAYLIST_STATE_STOP && */playlist.queued>songOrder) { + if(playlist.queued>songOrder) { playlist.queued--; } @@ -745,7 +758,7 @@ void syncCurrentPlayerDecodeMetadata() { if(!songPlayer) return; - if(playlist_state!=PLAYLIST_STATE_PLAY); + if(playlist_state!=PLAYLIST_STATE_PLAY) return; song = playlist.songs[playlist.order[playlist.current]]; @@ -775,7 +788,7 @@ int currentSongInPlaylist(FILE * fp) { syncPlaylistWithQueue(0); - if(playlist.current= 0 && playlist.current= playlist.length || (!playlist.repeat && - playlist.current == playlist.length-1)) - { - playlist.current = -1; - } - else if(playlist.current == playlist.length-1) playlist.current = 0; - else if(playlist.current >= 0) playlist.current++; -} - int nextSongInPlaylist(FILE * fp) { if(playlist_state!=PLAYLIST_STATE_PLAY) return 0; -- cgit v1.2.3