mirror of
https://github.com/owntone/owntone-server.git
synced 2025-11-09 05:34:58 -05:00
Protect playback_start() againt empty playlist
This commit is contained in:
@@ -1652,6 +1652,13 @@ playback_start(void *arg)
|
||||
uint32_t *idx_id;
|
||||
int ret;
|
||||
|
||||
if (!source_head)
|
||||
{
|
||||
DPRINTF(E_LOG, L_PLAYER, "Nothing to play!\n");
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
||||
idx_id = (uint32_t *)arg;
|
||||
|
||||
if (player_state == PLAY_PLAYING)
|
||||
|
||||
Reference in New Issue
Block a user