From 525a7e487bc1fd469015b2539b7f6be3e54dad75 Mon Sep 17 00:00:00 2001 From: Mustafa Quraish Date: Fri, 27 Aug 2021 12:35:28 -0400 Subject: [PATCH] AudioApplet: Remove `wpath` and `cpath` priviliges --- Userland/Applets/Audio/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applets/Audio/main.cpp b/Userland/Applets/Audio/main.cpp index b7542d57a3..0a86f2afd5 100644 --- a/Userland/Applets/Audio/main.cpp +++ b/Userland/Applets/Audio/main.cpp @@ -233,7 +233,7 @@ int main(int argc, char** argv) unveil(nullptr, nullptr); - if (pledge("stdio recvfd sendfd rpath wpath cpath", nullptr) < 0) { + if (pledge("stdio recvfd sendfd rpath", nullptr) < 0) { perror("pledge"); return 1; }