diff options
author | Andreas Kling <kling@serenityos.org> | 2021-01-15 12:14:42 +0100 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-01-15 14:10:32 +0100 |
commit | 20915795a8497192132680aaff6a9009e59a4cf2 (patch) | |
tree | ccd57710410b13779e5e058507bcce604ee6f650 /Userland/Applications/Browser | |
parent | 0b0514d46bddf56052ca5a892d3a4b20aa8249c1 (diff) | |
download | serenity-20915795a8497192132680aaff6a9009e59a4cf2.zip |
Everywhere: Pledge "sendfd" in WindowServer client programs
This is needed for the new way we transfer window backing stores.
Diffstat (limited to 'Userland/Applications/Browser')
-rw-r--r-- | Userland/Applications/Browser/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Applications/Browser/main.cpp b/Userland/Applications/Browser/main.cpp index d83b68f5f4..979bcec35b 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 accept unix cpath rpath wpath fattr sendfd recvfd", nullptr) < 0) { + if (pledge("stdio sendfd shared_buffer accept unix cpath rpath wpath fattr sendfd recvfd", nullptr) < 0) { perror("pledge"); return 1; } @@ -96,7 +96,7 @@ int main(int argc, char** argv) return 1; } - if (pledge("stdio shared_buffer accept unix cpath rpath wpath sendfd recvfd", nullptr) < 0) { + if (pledge("stdio sendfd shared_buffer accept unix cpath rpath wpath sendfd recvfd", nullptr) < 0) { perror("pledge"); return 1; } |