[player] Fix return value in playback_prev_bh if source_open failed

This commit is contained in:
chme 2016-08-06 06:31:09 +02:00
parent cd9a3bae07
commit 2ae94e8f82

View File

@ -2530,7 +2530,8 @@ playback_prev_bh(void *arg, int *retval)
{
playback_abort();
return -1;
*retval = -1;
return COMMAND_END;
}
}
else