From 9eff51d8317814e09d3f2cccaf80ef6ed099629e Mon Sep 17 00:00:00 2001 From: "madmaxoft@gmail.com" Date: Sun, 24 Mar 2013 17:41:54 +0000 Subject: LeakFinder: Fixed previous commit, housekeeping is now factored in properly in both "alloc" and "free". git-svn-id: http://mc-server.googlecode.com/svn/trunk@1311 0a769ca7-a7f5-676a-18bf-c427514a06d6 --- source/LeakFinder.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/LeakFinder.cpp') diff --git a/source/LeakFinder.cpp b/source/LeakFinder.cpp index 6439ff331..fcafd44c2 100644 --- a/source/LeakFinder.cpp +++ b/source/LeakFinder.cpp @@ -847,7 +847,7 @@ static int MyAllocHook(int nAllocType, void *pvData, if (lRequest != 0) { // RequestID was found - g_CurrentMemUsage -= nSize; + g_CurrentMemUsage -= nSize + CRTTable::AllocHashEntryTypeSize; g_pCRTTable->Remove(lRequest); } } // freeing @@ -865,7 +865,7 @@ static int MyAllocHook(int nAllocType, void *pvData, pHead = pHdr(pvData); // Try to find the RequestID in the Hash-Table, mark it that it was freed lReallocRequest = pHead->lRequest; - g_CurrentMemUsage -= pHead->nDataSize; + g_CurrentMemUsage -= pHead->nDataSize + CRTTable::AllocHashEntryTypeSize; bRet = g_pCRTTable->Remove(lReallocRequest); } // ValidHeapPointer } // re-allocating -- cgit v1.2.3