Преглед на файлове

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