1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 20:07:35 +00:00

UserspaceEmulator: Report heap buffer overflows :^)

This commit is contained in:
Andreas Kling 2020-08-01 09:44:19 +02:00
parent 030edbd513
commit 80eef2c014
2 changed files with 36 additions and 4 deletions

View file

@ -62,6 +62,7 @@ private:
};
Mallocation* find_mallocation(FlatPtr);
Mallocation* find_mallocation_before(FlatPtr);
bool is_reachable(const Mallocation&) const;
Vector<Mallocation> m_mallocations;