diff options
-rw-r--r-- | Userland/Services/Taskbar/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Services/Taskbar/main.cpp b/Userland/Services/Taskbar/main.cpp index ed5135b7d3..b6fee58a2a 100644 --- a/Userland/Services/Taskbar/main.cpp +++ b/Userland/Services/Taskbar/main.cpp @@ -46,7 +46,7 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) ; }); - // We need to obtain the WM connection here as well before the pledge shortening. + TRY(Core::System::pledge("stdio recvfd sendfd proc exec rpath unix")); GUI::WindowManagerServerConnection::the(); TRY(Core::System::pledge("stdio recvfd sendfd proc exec rpath")); |