Fix ordering of variables reported in CxbxRtlReallocDebug()
This commit is contained in:
parent
b3463985b5
commit
5b1d969547
|
@ -506,7 +506,7 @@ void *CxbxRtlReallocDebug(HANDLE Heap,
|
||||||
" File: %s\n"
|
" File: %s\n"
|
||||||
" Line: %d\n",
|
" Line: %d\n",
|
||||||
pRealloc->pMem,
|
pRealloc->pMem,
|
||||||
pRealloc->pFile, pRealloc->Size, pRealloc->Line,
|
pRealloc->Size, pRealloc->pFile, pRealloc->Line,
|
||||||
Bytes, pFile, Line);
|
Bytes, pFile, Line);
|
||||||
}
|
}
|
||||||
void *pNewMem = NtDll::RtlReAllocateHeap(Heap, Flags, GetMemStart(pRealloc), Bytes + 2 * sizeof(MEMORY_GUARD));
|
void *pNewMem = NtDll::RtlReAllocateHeap(Heap, Flags, GetMemStart(pRealloc), Bytes + 2 * sizeof(MEMORY_GUARD));
|
||||||
|
|
Loading…
Reference in New Issue