mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-01 05:39:02 +00:00
FontEditor: Add missing unix
pledge
Without this change, FontEditor would crash due to LibDesktop opening an IPC connection. Fixes #7137.
This commit is contained in:
parent
f89e8fb71a
commit
a5801e9919
Notes:
sideshowbarker
2024-07-18 18:06:19 +09:00
Author: https://github.com/BertalanD
Commit: a5801e9919
Pull-request: https://github.com/SerenityOS/serenity/pull/7141
Issue: https://github.com/SerenityOS/serenity/issues/7137
1 changed files with 1 additions and 1 deletions
|
@ -27,7 +27,7 @@ int main(int argc, char** argv)
|
|||
|
||||
auto app = GUI::Application::construct(argc, argv);
|
||||
|
||||
if (pledge("stdio recvfd sendfd thread rpath cpath wpath", nullptr) < 0) {
|
||||
if (pledge("stdio recvfd sendfd thread rpath unix cpath wpath", nullptr) < 0) {
|
||||
perror("pledge");
|
||||
return 1;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue