Forráskód Böngészése

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 6 éve
szülő
commit
2484d1eb35
1 módosított fájl, 2 hozzáadás és 0 törlés
  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;
 }