From eef07d2f578727d3ac0b55ea221716ea1c2ce9a7 Mon Sep 17 00:00:00 2001 From: Romain Chardiny Date: Mon, 17 Apr 2023 12:26:58 +0200 Subject: ldd: Pledge map_fixed --- Userland/Utilities/ldd.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Userland/Utilities/ldd.cpp b/Userland/Utilities/ldd.cpp index 972c267230..0236d914d9 100644 --- a/Userland/Utilities/ldd.cpp +++ b/Userland/Utilities/ldd.cpp @@ -80,7 +80,7 @@ static ErrorOr recusively_resolve_all_necessary_libraries(StringView inter ErrorOr serenity_main(Main::Arguments arguments) { - TRY(Core::System::pledge("stdio rpath")); + TRY(Core::System::pledge("stdio rpath map_fixed")); DeprecatedString path {}; Optional recursive_iteration_max; -- cgit v1.2.3