mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-09 01:29:17 +00:00
Kernel: execve: find_elf_interpreter_for_executable: Fix dbgln
This commit is contained in:
parent
aa8cb35b90
commit
1fa9d9dd68
Notes:
sideshowbarker
2024-07-18 23:10:41 +09:00
Author: https://github.com/bcoles
Commit: 1fa9d9dd68
Pull-request: https://github.com/SerenityOS/serenity/pull/4982
1 changed files with 1 additions and 1 deletions
|
@ -750,7 +750,7 @@ KResultOr<RefPtr<FileDescription>> Process::find_elf_interpreter_for_executable(
|
||||||
// If it's ET_DYN with no PT_INTERP, then it's a dynamic executable responsible
|
// If it's ET_DYN with no PT_INTERP, then it's a dynamic executable responsible
|
||||||
// for its own relocation (i.e. it's /usr/lib/Loader.so)
|
// for its own relocation (i.e. it's /usr/lib/Loader.so)
|
||||||
if (path != "/usr/lib/Loader.so")
|
if (path != "/usr/lib/Loader.so")
|
||||||
dbgln("exec({}): WARNING - Dynamic ELF executable without a PT_INTERP header, and isn't /usr/lib/Loader.so");
|
dbgln("exec({}): WARNING - Dynamic ELF executable without a PT_INTERP header, and isn't /usr/lib/Loader.so", path);
|
||||||
return nullptr;
|
return nullptr;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue