Explorar el Código

Removed debug function call inside malloc()

Ioannis Koutras hace 13 años
padre
commit
c1f634be8e
Se han modificado 1 ficheros con 0 adiciones y 4 borrados
  1. 0 4
      src/dmmlib.c

+ 0 - 4
src/dmmlib.c

@@ -152,10 +152,6 @@ void * malloc(size_t size) {
         }
     }
     
-#ifdef WITH_DEBUG
-    get_raw_blocks(&systemallocator);
-#endif /* WITH_DEBUG */
-
     return ptr;
 }