diff --git a/Userland/Utilities/abench.cpp b/Userland/Utilities/abench.cpp index 10798827fa6..bc4ab9c4ddc 100644 --- a/Userland/Utilities/abench.cpp +++ b/Userland/Utilities/abench.cpp @@ -8,7 +8,6 @@ #include #include #include -#include #include #include #include @@ -28,10 +27,6 @@ ErrorOr serenity_main(Main::Arguments args) args_parser.add_option(sample_count, "How many samples to load at maximum", "sample-count", 's', "samples"); args_parser.parse(args); - TRY(Core::System::unveil(TRY(FileSystem::absolute_path(path)), "r"sv)); - TRY(Core::System::unveil(nullptr, nullptr)); - TRY(Core::System::pledge("stdio recvfd rpath")); - auto maybe_loader = Audio::Loader::create(path); if (maybe_loader.is_error()) { warnln("Failed to load audio file: {}", maybe_loader.error().description); diff --git a/Userland/Utilities/js.cpp b/Userland/Utilities/js.cpp index 8b8440b708d..56ff46f4a95 100644 --- a/Userland/Utilities/js.cpp +++ b/Userland/Utilities/js.cpp @@ -11,7 +11,6 @@ #include #include #include -#include #include #include #include @@ -528,8 +527,6 @@ private: ErrorOr serenity_main(Main::Arguments arguments) { - TRY(Core::System::pledge("stdio rpath wpath cpath tty sigaction map_fixed")); - bool gc_on_every_allocation = false; bool disable_syntax_highlight = false; bool disable_debug_printing = false; diff --git a/Userland/Utilities/lzcat.cpp b/Userland/Utilities/lzcat.cpp index 320e814f9ea..d0e48f96c7b 100644 --- a/Userland/Utilities/lzcat.cpp +++ b/Userland/Utilities/lzcat.cpp @@ -7,13 +7,10 @@ #include #include #include -#include #include ErrorOr serenity_main(Main::Arguments arguments) { - TRY(Core::System::pledge("rpath stdio")); - StringView filename; Core::ArgsParser args_parser; diff --git a/Userland/Utilities/xzcat.cpp b/Userland/Utilities/xzcat.cpp index 4d9cca37b40..7063ef02794 100644 --- a/Userland/Utilities/xzcat.cpp +++ b/Userland/Utilities/xzcat.cpp @@ -7,13 +7,10 @@ #include #include #include -#include #include ErrorOr serenity_main(Main::Arguments arguments) { - TRY(Core::System::pledge("rpath stdio")); - StringView filename; Core::ArgsParser args_parser;