From 95751987fb505b4586c7a3a32a9e0242b0004a05 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Sat, 28 Aug 2021 11:26:32 +0100 Subject: [PATCH] MailSettings: Remove proc and exec from pleges --- Userland/Applications/MailSettings/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Userland/Applications/MailSettings/main.cpp b/Userland/Applications/MailSettings/main.cpp index 23826390bd..ee4f8cd461 100644 --- a/Userland/Applications/MailSettings/main.cpp +++ b/Userland/Applications/MailSettings/main.cpp @@ -11,14 +11,14 @@ int main(int argc, char** argv) { - if (pledge("stdio rpath cpath wpath recvfd sendfd unix proc exec", nullptr) < 0) { + if (pledge("stdio rpath cpath wpath recvfd sendfd unix", nullptr) < 0) { perror("pledge"); return 1; } auto app = GUI::Application::construct(argc, argv); - if (pledge("stdio rpath cpath wpath recvfd sendfd proc exec", nullptr) < 0) { + if (pledge("stdio rpath cpath wpath recvfd sendfd", nullptr) < 0) { perror("pledge"); return 1; }