diff options
author | Romain Chardiny <romain.chardiny@gmail.com> | 2023-04-17 12:26:58 +0200 |
---|---|---|
committer | Tim Flynn <trflynn89@pm.me> | 2023-04-17 19:29:20 -0400 |
commit | eef07d2f578727d3ac0b55ea221716ea1c2ce9a7 (patch) | |
tree | cdaa26ac09ad276e383d6d1dc7f413ff2c2a7b6b | |
parent | 5bb9af8297ca18d36e70ab235f8cf104c66e08bf (diff) | |
download | serenity-eef07d2f578727d3ac0b55ea221716ea1c2ce9a7.zip |
ldd: Pledge map_fixed
-rw-r--r-- | Userland/Utilities/ldd.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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<void> recusively_resolve_all_necessary_libraries(StringView inter ErrorOr<int> serenity_main(Main::Arguments arguments) { - TRY(Core::System::pledge("stdio rpath")); + TRY(Core::System::pledge("stdio rpath map_fixed")); DeprecatedString path {}; Optional<size_t> recursive_iteration_max; |