Browse Source

Removed debug function call inside malloc()

Ioannis Koutras 13 years ago
parent
commit
c1f634be8e
1 changed files with 0 additions and 4 deletions
  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;
 }