LibELF: Warn on self-dlopening libraries while initializing

This commit is contained in:
Tim Schumacher 2022-06-24 11:12:07 +02:00 committed by Linus Groh
commit 6732fec8b8
Notes: sideshowbarker 2024-07-17 10:00:21 +09:00
3 changed files with 13 additions and 1 deletions

View file

@ -243,6 +243,8 @@ Result<NonnullRefPtr<DynamicObject>, DlErrorMessage> DynamicLoader::load_stage_3
#endif
}
m_fully_relocated = true;
return NonnullRefPtr<DynamicObject> { *m_dynamic_object };
}