mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 14:07:45 +00:00
AK: Check consistency during BumpAllocator allocation
This commit is contained in:
parent
8e55c4bfaf
commit
885b69c877
1 changed files with 1 additions and 0 deletions
|
@ -130,6 +130,7 @@ protected:
|
||||||
|
|
||||||
VERIFY(m_current_chunk);
|
VERIFY(m_current_chunk);
|
||||||
auto& old_header = *(ChunkHeader*)m_current_chunk;
|
auto& old_header = *(ChunkHeader*)m_current_chunk;
|
||||||
|
VERIFY(old_header.magic == chunk_magic);
|
||||||
VERIFY(old_header.next_chunk == 0);
|
VERIFY(old_header.next_chunk == 0);
|
||||||
old_header.next_chunk = (FlatPtr)new_chunk;
|
old_header.next_chunk = (FlatPtr)new_chunk;
|
||||||
m_current_chunk = (FlatPtr)new_chunk;
|
m_current_chunk = (FlatPtr)new_chunk;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue