diff options
author | Andreas Kling <kling@serenityos.org> | 2021-05-22 18:42:47 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2021-05-22 18:54:22 +0200 |
commit | 5729b4e9a5658d8728239e3141ff270004af5d6c (patch) | |
tree | 0b4ce70a15ce0a80b36afed559686a007d0de686 /Userland/Applications | |
parent | 5d6252b29e47d0692f6f8155fa86452627d1832e (diff) | |
download | serenity-5729b4e9a5658d8728239e3141ff270004af5d6c.zip |
SystemMonitor: Don't unveil /tmp/portal/symbol
This portal doesn't exist after SymbolServer has been removed.
Diffstat (limited to 'Userland/Applications')
-rw-r--r-- | Userland/Applications/SystemMonitor/main.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Userland/Applications/SystemMonitor/main.cpp b/Userland/Applications/SystemMonitor/main.cpp index a50a2f5982..5e42f3783e 100644 --- a/Userland/Applications/SystemMonitor/main.cpp +++ b/Userland/Applications/SystemMonitor/main.cpp @@ -130,11 +130,6 @@ int main(int argc, char** argv) return 1; } - if (unveil("/tmp/portal/symbol", "rw") < 0) { - perror("unveil"); - return 1; - } - if (unveil("/bin", "r") < 0) { perror("unveil"); return 1; |