[tor-commits] [tor/master] Another memory leak in the tests

nickm at torproject.org nickm at torproject.org
Mon Feb 22 21:20:17 UTC 2016


commit e019e11e61c2c57c84505aaf2559966bddd4a10d
Author: Nick Mathewson <nickm at torproject.org>
Date:   Mon Feb 22 16:20:11 2016 -0500

    Another memory leak in the tests
---
 src/test/test_options.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/src/test/test_options.c b/src/test/test_options.c
index 1814fbf..b2be8a9 100644
--- a/src/test/test_options.c
+++ b/src/test/test_options.c
@@ -242,6 +242,7 @@ test_have_enough_mem_for_dircache(void *arg)
   }
   tor_free(msg);
 
+  config_free_lines(cl); cl = NULL;
   configuration = "ORPort 8080\nDirCache 1\nBridgeRelay 1";
   r = config_get_lines(configuration, &cl, 1);
   tt_int_op(r, OP_EQ, 0);
@@ -264,6 +265,7 @@ test_have_enough_mem_for_dircache(void *arg)
   }
   tor_free(msg);
 
+  config_free_lines(cl); cl = NULL;
   configuration = "ORPort 8080\nDirCache 0";
   r = config_get_lines(configuration, &cl, 1);
   tt_int_op(r, OP_EQ, 0);
@@ -293,7 +295,7 @@ test_have_enough_mem_for_dircache(void *arg)
     tor_free(msg);
   tor_free(dflt);
   or_options_free(opt);
-  tor_free(cl);
+  config_free_lines(cl);
   return;
 }
 



More information about the tor-commits mailing list