Explorar el Código

Fix a memory leak in build_unopened_fourhop

This is a unit-test-only leak, but let's fix it anyway so it doesn't
hide real bugs.

Bug not in any released version of Tor.
Nick Mathewson hace 6 años
padre
commit
2484d1eb35
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      src/test/test_circuitstats.c

+ 2 - 0
src/test/test_circuitstats.c

@@ -82,6 +82,8 @@ build_unopened_fourhop(struct timeval circ_start_time)
   onion_append_hop(&or_circ->cpath, fakehop);
   onion_append_hop(&or_circ->cpath, fakehop);
 
+  tor_free(fakehop);
+
   return or_circ;
 }