From: Nick Mathewson Date: Mon, 5 Sep 2016 17:30:50 +0000 (-0400) Subject: Fix BUG warning with stack trace from config/parse_port_config__listenaddress X-Git-Tag: tor-0.2.9.3-alpha~95 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6abce601f22789aa4bd5fdf227f9e4ba07406b1c;p=thirdparty%2Ftor.git Fix BUG warning with stack trace from config/parse_port_config__listenaddress --- diff --git a/src/test/test_config.c b/src/test/test_config.c index 90ea4da87d..1e6d2adf57 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);