瀏覽代碼

Removed debug function call inside malloc()

Ioannis Koutras 12 年之前
父節點
當前提交
c1f634be8e
共有 1 個文件被更改,包括 0 次插入4 次删除
  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;
 }