mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 23:07:35 +00:00
UserspaceEmulator: Don't audit accesses within realloc(), malloc_size()
These functions access malloc-related memory outside of UE's accounting boundaries, so just ignore them.
This commit is contained in:
parent
6d841f2628
commit
013c7ccd73
2 changed files with 14 additions and 1 deletions
|
@ -164,8 +164,12 @@ private:
|
|||
|
||||
FlatPtr m_malloc_symbol_start { 0 };
|
||||
FlatPtr m_malloc_symbol_end { 0 };
|
||||
FlatPtr m_realloc_symbol_start { 0 };
|
||||
FlatPtr m_realloc_symbol_end { 0 };
|
||||
FlatPtr m_free_symbol_start { 0 };
|
||||
FlatPtr m_free_symbol_end { 0 };
|
||||
FlatPtr m_malloc_size_symbol_start { 0 };
|
||||
FlatPtr m_malloc_size_symbol_end { 0 };
|
||||
|
||||
sigset_t m_pending_signals { 0 };
|
||||
sigset_t m_signal_mask { 0 };
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue