瀏覽代碼

fix: Mute custom memory manager if address entry not found

Stefan Profanter 5 年之前
父節點
當前提交
e1c93c17cd
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      tests/fuzz/custom_memory_manager.c

+ 1 - 1
tests/fuzz/custom_memory_manager.c

@@ -125,7 +125,7 @@ static int removeFromMap(void *addr) {
         e = e->prev;
     }
     pthread_mutex_unlock(&mutex);
-    printf("MemoryManager: Entry with address %p not found", addr);
+    //printf("MemoryManager: Entry with address %p not found", addr);
     return 0;
 }