소스 검색

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;
 }