Procházet zdrojové kódy

fix: Mute custom memory manager if address entry not found

Stefan Profanter před 5 roky
rodič
revize
e1c93c17cd
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  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;
 }