2
0
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:
Ted Lemon 2000-01-26 16:00:08 +00:00
parent 772224884f
commit c258c7a224

View File

@ -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)