aboutsummaryrefslogtreecommitdiff
path: root/src/player_thread.c
diff options
context:
space:
mode:
authorMax Kellermann <max@duempel.org>2009-11-14 00:45:47 +0100
committerMax Kellermann <max@duempel.org>2009-11-14 00:45:52 +0100
commit409a3ed808ea111cd4c62ac71c66cef7b86615af (patch)
treef5e78302249bab8464f2b115f7537b1d29eeef3e /src/player_thread.c
parent76283c25a5f17873b37f18564e62f9e16ba2e90e (diff)
player_thread: corrected two assertions on "queued"
At this point, the function may be called from the SEEK handler.
Diffstat (limited to 'src/player_thread.c')
-rw-r--r--src/player_thread.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/player_thread.c b/src/player_thread.c
index 4f754241..907d7a92 100644
--- a/src/player_thread.c
+++ b/src/player_thread.c
@@ -134,7 +134,7 @@ player_dc_start(struct player *player, struct music_pipe *pipe)
{
struct decoder_control *dc = player->dc;
- assert(player->queued);
+ assert(player->queued || pc.command == PLAYER_COMMAND_SEEK);
assert(pc.next_song != NULL);
dc_start(dc, pc.next_song, player_buffer, pipe);
@@ -187,7 +187,7 @@ player_wait_for_decoder(struct player *player)
{
struct decoder_control *dc = player->dc;
- assert(player->queued);
+ assert(player->queued || pc.command == PLAYER_COMMAND_SEEK);
assert(pc.next_song != NULL);
player->queued = false;