mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 07:37:35 +00:00
Emulator: Use existing queried library name in load check
We already asked the region about what its library name is, and we also use that value when maybe constructing a path, so let's make the check use that as well.
This commit is contained in:
parent
fc6f265155
commit
6c6381408f
1 changed files with 1 additions and 1 deletions
|
@ -395,7 +395,7 @@ MmapRegion const* Emulator::load_library_from_address(FlatPtr address)
|
|||
return {};
|
||||
|
||||
String lib_path = lib_name;
|
||||
if (region->name().contains(".so"))
|
||||
if (lib_name.ends_with(".so"))
|
||||
lib_path = String::formatted("/usr/lib/{}", lib_path);
|
||||
|
||||
if (!m_dynamic_library_cache.contains(lib_path)) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue