summaryrefslogtreecommitdiff
path: root/Userland/Applications/Browser/main.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2021-01-17 08:18:11 +0100
committerAndreas Kling <kling@serenityos.org>2021-01-17 09:07:32 +0100
commitcc8b3c92ba1c7ee3581fa2f13ade696766dd7215 (patch)
treeb6bc2d280e127c398f90f73a1ecc32b09441bbe5 /Userland/Applications/Browser/main.cpp
parentb42f0b9650fe4f2571896371a1c9820e1d7b2fbc (diff)
downloadserenity-cc8b3c92ba1c7ee3581fa2f13ade696766dd7215.zip
Everywhere: Remove a bunch of now-unnecessary shared_buffer pledges
Diffstat (limited to 'Userland/Applications/Browser/main.cpp')
-rw-r--r--Userland/Applications/Browser/main.cpp4
1 files changed, 2 insertions, 2 deletions
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;
}