fix malloc_hook bug

This commit is contained in:
cxgeorge 2001-10-29 22:48:09 +00:00
parent e870a0a2b2
commit 05f1a94e4a
1 changed files with 1 additions and 1 deletions

View File

@ -333,7 +333,7 @@ win32_malloc_hook(int alloc_type, void *ptr,
break;
case _HOOK_FREE:
increment = -_msize(ptr);
increment = - ((int)_msize(ptr));
break;
}