mirror of
https://gitlab.isc.org/isc-projects/dhcp
synced 2025-08-30 13:57:50 +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;
|
const char *file;
|
||||||
int line;
|
int line;
|
||||||
{
|
{
|
||||||
unsigned char *foo = dmalloc (size + DMDSIZE, file, line);
|
unsigned char *foo = malloc (size + DMDSIZE);
|
||||||
int i;
|
int i;
|
||||||
VOIDPTR *bar;
|
VOIDPTR *bar;
|
||||||
#if defined (DEBUG_MEMORY_LEAKAGE) || defined (DEBUG_MALLOC_POOL)
|
#if defined (DEBUG_MEMORY_LEAKAGE) || defined (DEBUG_MALLOC_POOL)
|
||||||
|
Reference in New Issue
Block a user