瀏覽代碼

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 年之前
父節點
當前提交
2484d1eb35
共有 1 個文件被更改,包括 2 次插入0 次删除
  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;
 }