From cc8b3c92ba1c7ee3581fa2f13ade696766dd7215 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Sun, 17 Jan 2021 08:18:11 +0100 Subject: Everywhere: Remove a bunch of now-unnecessary shared_buffer pledges --- Userland/Applications/Browser/main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Userland/Applications/Browser/main.cpp') diff --git a/Userland/Applications/Browser/main.cpp b/Userland/Applications/Browser/main.cpp index 52fa116bcc..694e25354b 100644 --- a/Userland/Applications/Browser/main.cpp +++ b/Userland/Applications/Browser/main.cpp @@ -70,7 +70,7 @@ int main(int argc, char** argv) return 1; } - if (pledge("stdio shared_buffer recvfd sendfd accept unix cpath rpath wpath fattr", nullptr) < 0) { + if (pledge("stdio recvfd sendfd accept unix cpath rpath wpath fattr", nullptr) < 0) { perror("pledge"); return 1; } @@ -96,7 +96,7 @@ int main(int argc, char** argv) return 1; } - if (pledge("stdio shared_buffer recvfd sendfd accept unix cpath rpath wpath", nullptr) < 0) { + if (pledge("stdio recvfd sendfd accept unix cpath rpath wpath", nullptr) < 0) { perror("pledge"); return 1; } -- cgit v1.2.3