mirror of
https://gitlab.isc.org/isc-projects/dhcp
synced 2025-08-30 05:47:45 +00:00
Use malloc, not dmalloc, within dmalloc. :')
This commit is contained in:
parent
772224884f
commit
c258c7a224
@ -41,7 +41,7 @@ VOIDPTR dmalloc (size, file, line)
|
||||
const char *file;
|
||||
int line;
|
||||
{
|
||||
unsigned char *foo = dmalloc (size + DMDSIZE, file, line);
|
||||
unsigned char *foo = malloc (size + DMDSIZE);
|
||||
int i;
|
||||
VOIDPTR *bar;
|
||||
#if defined (DEBUG_MEMORY_LEAKAGE) || defined (DEBUG_MALLOC_POOL)
|
||||
|
Loading…
x
Reference in New Issue
Block a user