[tor-commits] [tor/master] Fix BUG warning with stack trace from config/parse_port_config__listenaddress

nickm at torproject.org nickm at torproject.org
Mon Sep 5 17:30:57 UTC 2016


commit 6abce601f22789aa4bd5fdf227f9e4ba07406b1c
Author: Nick Mathewson <nickm at torproject.org>
Date:   Mon Sep 5 13:30:50 2016 -0400

    Fix BUG warning with stack trace from config/parse_port_config__listenaddress
---
 src/test/test_config.c | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/test/test_config.c b/src/test/test_config.c
index 90ea4da..1e6d2ad 100644
--- a/src/test/test_config.c
+++ b/src/test/test_config.c
@@ -3832,6 +3832,8 @@ test_config_parse_port_config__listenaddress(void *data)
   tt_int_op(ret, OP_EQ, 0);
 
   // Test warning nonlocal other
+  SMARTLIST_FOREACH(slout,port_cfg_t *,pf,port_cfg_free(pf));
+  smartlist_clear(slout);
   ret = parse_port_config(slout, config_port2, config_listen_address, "DNS",
                           0, NULL, 0, CL_PORT_WARN_NONLOCAL);
   tt_int_op(ret, OP_EQ, 0);



More information about the tor-commits mailing list