Commit cfd5bfa8 authored by Marcus Meissner's avatar Marcus Meissner Committed by Alexandre Julliard

ntdll: Avoid shadowing size variable.

parent 9801818f
......@@ -655,8 +655,9 @@ static void HEAP_MakeInUseBlockFree( SUBHEAP *subheap, ARENA_INUSE *pArena )
if (((char *)pFree == (char *)subheap->base + subheap->headerSize) &&
(subheap != &subheap->heap->subheap))
{
SIZE_T size = 0;
void *addr = subheap->base;
size = 0;
/* Remove the free block from the list */
list_remove( &pFree->entry );
/* Remove the subheap from the list */
......
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