commit 1489a53da056ed416c9a7075a805d46d76079a4a from: Omar Polo date: Wed Feb 16 21:15:33 2022 UTC don't assert IMSG_STOP there's a small window of time where we could deliver a pause message and crash the player. commit - 06961b726d45e79b997a702b3218f146e332415c commit + 1489a53da056ed416c9a7075a805d46d76079a4a blob - 455447e395ca96f8a5be5d9fdc2f5791b262de84 blob + 5a935f2fc33c77b1287d2dc270649cd248b51af1 --- player.c +++ player.c @@ -278,7 +278,7 @@ player(int debug, int verbose) while (!halted) { while (nextfd == -1) - assert(player_dispatch() == IMSG_STOP); + player_dispatch(); player_playnext(); player_sendeof();