From 27111cfc6cc60214269cc26ea75616667f5e9464 Mon Sep 17 00:00:00 2001 From: Brian Gianforcaro Date: Fri, 13 Aug 2021 01:07:49 -0700 Subject: [PATCH] SystemMonitor: Unveil /usr/local/bin so symbolization works on ports --- Userland/Applications/SystemMonitor/main.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Userland/Applications/SystemMonitor/main.cpp b/Userland/Applications/SystemMonitor/main.cpp index fcc43dbc61..de94c32f5d 100644 --- a/Userland/Applications/SystemMonitor/main.cpp +++ b/Userland/Applications/SystemMonitor/main.cpp @@ -139,6 +139,11 @@ int main(int argc, char** argv) return 1; } + if (unveil("/usr/local/bin", "r") < 0) { + perror("unveil"); + return 1; + } + if (unveil("/bin/Profiler", "rx") < 0) { perror("unveil"); return 1;