diff options
author | Mustafa Quraish <mustafaq9@gmail.com> | 2021-08-27 12:35:28 -0400 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-08-27 23:17:05 +0200 |
commit | 525a7e487bc1fd469015b2539b7f6be3e54dad75 (patch) | |
tree | d70fc10797bc263cc6dfcdeadd7488693696b7a1 /Userland/Applets | |
parent | 17299db61a8a4a1d8ecad0cf13e5ff7d36d40326 (diff) | |
download | serenity-525a7e487bc1fd469015b2539b7f6be3e54dad75.zip |
AudioApplet: Remove `wpath` and `cpath` priviliges
Diffstat (limited to 'Userland/Applets')
-rw-r--r-- | Userland/Applets/Audio/main.cpp | 2 |
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; } |