From: Ted Lemon Date: Wed, 26 Jan 2000 16:00:08 +0000 (+0000) Subject: Use malloc, not dmalloc, within dmalloc. :') X-Git-Tag: V3-BETA-2-PATCH-1~400 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c258c7a224114788d45f76b6ebf9cc05a4434734;p=thirdparty%2Fdhcp.git Use malloc, not dmalloc, within dmalloc. :') --- diff --git a/omapip/alloc.c b/omapip/alloc.c index dfa55b679..ee4e7221d 100644 --- a/omapip/alloc.c +++ b/omapip/alloc.c @@ -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)