Commit 61bc8abd authored by Rémi Bernon's avatar Rémi Bernon Committed by Alexandre Julliard

ntdll: Use block size helpers in heap_reallocate.

parent eb931b84
......@@ -1662,8 +1662,8 @@ static NTSTATUS heap_reallocate( HEAP *heap, ULONG flags, void *ptr, SIZE_T size
/* Check if we need to grow the block */
old_data_size = (block->size & ARENA_SIZE_MASK);
old_size = (block->size & ARENA_SIZE_MASK) - block->unused_bytes;
old_data_size = block_get_size( block ) - sizeof(*block);
old_size = block_get_size( block ) - block_get_overhead( block );
if (data_size > old_data_size)
{
if ((next = next_block( subheap, block )) && (block_get_flags( next ) & ARENA_FLAG_FREE) &&
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment