Ver código fonte

Removed debug function call inside malloc()

Ioannis Koutras 12 anos atrás
pai
commit
c1f634be8e
1 arquivos alterados com 0 adições e 4 exclusões
  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;
 }