mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-09-19 07:49:05 +00:00
LibELF: Warn on self-dlopening libraries while initializing
This commit is contained in:
parent
082a7baa3b
commit
6732fec8b8
Notes:
sideshowbarker
2024-07-17 10:00:21 +09:00
Author: https://github.com/timschumi
Commit: 6732fec8b8
Pull-request: https://github.com/SerenityOS/serenity/pull/14373
3 changed files with 13 additions and 1 deletions
|
@ -82,6 +82,7 @@ public:
|
|||
|
||||
DynamicObject const& dynamic_object() const;
|
||||
|
||||
bool is_fully_relocated() const { return m_fully_relocated; }
|
||||
bool is_fully_initialized() const { return m_fully_initialized; }
|
||||
|
||||
private:
|
||||
|
@ -161,6 +162,7 @@ private:
|
|||
|
||||
mutable RefPtr<DynamicObject> m_cached_dynamic_object;
|
||||
|
||||
bool m_fully_relocated { false };
|
||||
bool m_fully_initialized { false };
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue