]> git.ipfire.org Git - thirdparty/dhcp.git/commitdiff
Use malloc, not dmalloc, within dmalloc. :')
authorTed Lemon <source@isc.org>
Wed, 26 Jan 2000 16:00:08 +0000 (16:00 +0000)
committerTed Lemon <source@isc.org>
Wed, 26 Jan 2000 16:00:08 +0000 (16:00 +0000)
omapip/alloc.c

index dfa55b679a97acda9747cb3f07ecf502433fc8c8..ee4e7221dc99e7691405b17be5f0b7e225eb9f9d 100644 (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)