diff options
author | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:11 +0200 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-08-26 08:27:11 +0200 |
commit | df251a9960c2ced5f3ac06b57de3b789c189df03 (patch) | |
tree | 844825a529017e0cd5950bd385faf1363b27f385 /src/player_thread.c | |
parent | e99333167e152dcdd3b40ae812f920eb5023543a (diff) | |
download | mpd-df251a9960c2ced5f3ac06b57de3b789c189df03.tar.gz mpd-df251a9960c2ced5f3ac06b57de3b789c189df03.tar.xz mpd-df251a9960c2ced5f3ac06b57de3b789c189df03.zip |
assert song->url != NULL
Diffstat (limited to 'src/player_thread.c')
-rw-r--r-- | src/player_thread.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/player_thread.c b/src/player_thread.c index fa3bbccf7..62badab96 100644 --- a/src/player_thread.c +++ b/src/player_thread.c @@ -69,6 +69,7 @@ static int waitOnDecode(int *decodeWaitedOn) } if (dc.error != DECODE_ERROR_NOERROR) { + assert(dc.next_song == NULL || dc.next_song->url != NULL); pc.errored_song = dc.next_song; pc.error = PLAYER_ERROR_FILE; return -1; @@ -148,6 +149,7 @@ static void processDecodeInput(int *pause_r, unsigned int *bbp_r, pc.state = PLAYER_STATE_PLAY; } else { char tmp[MPD_PATH_MAX]; + assert(dc.next_song == NULL || dc.next_song->url != NULL); pc.errored_song = dc.next_song; pc.error = PLAYER_ERROR_AUDIO; ERROR("problems opening audio device " @@ -246,6 +248,7 @@ static void decodeParent(void) decodeWaitedOn = 0; if(openAudioDevice(&(ob.audioFormat))<0) { char tmp[MPD_PATH_MAX]; + assert(dc.next_song == NULL || dc.next_song->url != NULL); pc.errored_song = dc.next_song; pc.error = PLAYER_ERROR_AUDIO; ERROR("problems opening audio device " @@ -266,6 +269,7 @@ static void decodeParent(void) } else if(dc.state!=DECODE_STATE_START) { /* the decoder failed */ + assert(dc.next_song == NULL || dc.next_song->url != NULL); pc.errored_song = dc.next_song; pc.error = PLAYER_ERROR_FILE; break; |