AK: Check consistency during BumpAllocator allocation

This commit is contained in:
Ben Wiederhake 2021-10-22 20:01:34 +02:00 committed by Linus Groh
parent 8e55c4bfaf
commit 885b69c877

View file

@ -130,6 +130,7 @@ protected:
VERIFY(m_current_chunk);
auto& old_header = *(ChunkHeader*)m_current_chunk;
VERIFY(old_header.magic == chunk_magic);
VERIFY(old_header.next_chunk == 0);
old_header.next_chunk = (FlatPtr)new_chunk;
m_current_chunk = (FlatPtr)new_chunk;