From a5801e991989ac009d6e5c8239a82a1945eae59d Mon Sep 17 00:00:00 2001 From: Daniel Bertalan Date: Sat, 15 May 2021 17:07:05 +0200 Subject: [PATCH] FontEditor: Add missing `unix` pledge Without this change, FontEditor would crash due to LibDesktop opening an IPC connection. Fixes #7137. --- Userland/Applications/FontEditor/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Applications/FontEditor/main.cpp b/Userland/Applications/FontEditor/main.cpp index f5024b757b..71a851b4e1 100644 --- a/Userland/Applications/FontEditor/main.cpp +++ b/Userland/Applications/FontEditor/main.cpp @@ -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; }