commit 251e00ff6d49ac88dee01a6bde35f26ac1680d3a from: Omar Polo date: Thu Mar 10 16:30:34 2022 UTC pledge audio too while for my particular use-case this has always worked with only "stdio recvfd", sio_open(3) mentions that if no further sio_open calls are made all pledges can be dropped except for "audio", so let's keep it. commit - 6a1b899f33aadd9552190404f656163ebe34de34 commit + 251e00ff6d49ac88dee01a6bde35f26ac1680d3a blob - 04d296e1ca16c4b92ac9d5590327e84d356946b5 blob + 1351e9e4c79b18a7204c2eb126d3e1f1b47c196e --- player.c +++ player.c @@ -296,7 +296,7 @@ player(int debug, int verbose) signal(SIGHUP, SIG_IGN); signal(SIGPIPE, SIG_IGN); - if (pledge("stdio recvfd", NULL) == -1) + if (pledge("stdio recvfd audio", NULL) == -1) fatal("pledge"); while (!halted) {