diff --git a/Servers/WindowServer/main.cpp b/Servers/WindowServer/main.cpp index 48323e39ff..8f142fe8c1 100644 --- a/Servers/WindowServer/main.cpp +++ b/Servers/WindowServer/main.cpp @@ -110,6 +110,11 @@ int main(int, char**) return 1; } + if (unveil("/bin", "x") < 0) { + perror("unveil"); + return 1; + } + if (unveil(nullptr, nullptr) < 0) { perror("unveil"); return 1;