ntdll: Avoid shadowing size variable.

This commit is contained in:
Marcus Meissner 2011-10-20 01:53:36 +02:00 committed by Alexandre Julliard
parent 9801818ff4
commit cfd5bfa86e
1 changed files with 2 additions and 1 deletions

View File

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