mirror of
https://gitlab.isc.org/isc-projects/dhcp
synced 2025-08-30 22:05:23 +00:00
Use malloc, not dmalloc, within dmalloc. :')
This commit is contained in:
@@ -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)
|
||||
|
Reference in New Issue
Block a user