diff options
author | Liav A <liavalb@gmail.com> | 2023-01-13 01:02:26 +0200 |
---|---|---|
committer | Andreas Kling <kling@serenityos.org> | 2023-01-13 13:41:30 +0100 |
commit | e241b47fee775ad9be40c8a219c4ee083ed32947 (patch) | |
tree | 74541e1dfe6779fd7e5f7364d45243303379cf89 /Userland/Applications/3DFileViewer/main.cpp | |
parent | 16b6e644d745c2171cdcafb057e42380da258575 (diff) | |
download | serenity-e241b47fee775ad9be40c8a219c4ee083ed32947.zip |
Userland: Remove a bunch of unveil calls on /sys/kernel/processes
These are not needed anymore since the introduction of the new
get_root_session_id syscall.
Diffstat (limited to 'Userland/Applications/3DFileViewer/main.cpp')
-rw-r--r-- | Userland/Applications/3DFileViewer/main.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Applications/3DFileViewer/main.cpp b/Userland/Applications/3DFileViewer/main.cpp index 14078998c6..911d764823 100644 --- a/Userland/Applications/3DFileViewer/main.cpp +++ b/Userland/Applications/3DFileViewer/main.cpp @@ -370,7 +370,6 @@ ErrorOr<int> serenity_main(Main::Arguments arguments) TRY(Core::System::pledge("stdio thread recvfd sendfd rpath unix prot_exec")); - TRY(Core::System::unveil("/sys/kernel/processes", "r")); TRY(Core::System::unveil("/tmp/session/%sid/portal/filesystemaccess", "rw")); TRY(Core::System::unveil("/home/anon/Documents/3D Models", "r")); TRY(Core::System::unveil("/res", "r")); |