소스 검색

release the memory of a big raw block to the system on free()

Ioannis Koutras 12 년 전
부모
커밋
bf3d27b04c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/free.c

+ 1 - 1
src/free.c

@@ -86,6 +86,6 @@ void free(void *ptr) {
         UNLOCK_GLOBAL();
 #endif /* WITH_ALLOCATOR_STATS */
 
-        /* release_memory(owner_raw_block); */
+        release_memory(owner_raw_block);
     }
 }