summaryrefslogtreecommitdiff
path: root/Userland/Applets
diff options
context:
space:
mode:
authorMustafa Quraish <mustafaq9@gmail.com>2021-08-27 12:35:28 -0400
committerAndreas Kling <kling@serenityos.org>2021-08-27 23:17:05 +0200
commit525a7e487bc1fd469015b2539b7f6be3e54dad75 (patch)
treed70fc10797bc263cc6dfcdeadd7488693696b7a1 /Userland/Applets
parent17299db61a8a4a1d8ecad0cf13e5ff7d36d40326 (diff)
downloadserenity-525a7e487bc1fd469015b2539b7f6be3e54dad75.zip
AudioApplet: Remove `wpath` and `cpath` priviliges
Diffstat (limited to 'Userland/Applets')
-rw-r--r--Userland/Applets/Audio/main.cpp2
1 files changed, 1 insertions, 1 deletions
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;
}