diff --git a/Userland/Applications/SystemMonitor/main.cpp b/Userland/Applications/SystemMonitor/main.cpp index 554c28be03..a6bfd016ad 100644 --- a/Userland/Applications/SystemMonitor/main.cpp +++ b/Userland/Applications/SystemMonitor/main.cpp @@ -141,6 +141,11 @@ int main(int argc, char** argv) return 1; } + if (unveil("/usr/local/lib", "r") < 0 && errno != ENOENT) { + perror("unveil"); + return 1; + } + if (unveil("/bin/Profiler", "rx") < 0) { perror("unveil"); return 1;