commit 53255e925c474f9d5cb30c1de4da025e6d709e9a Author: Nick Mathewson nickm@torproject.org Date: Wed Sep 28 08:21:33 2016 -0700
Fix memory leak from prop264 branch. CID 1373401 --- src/or/router.c | 1 + 1 file changed, 1 insertion(+)
diff --git a/src/or/router.c b/src/or/router.c index a74a2a9..b93b7c1 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -2954,6 +2954,7 @@ router_dump_router_to_string(routerinfo_t *router, tor_free(rsa_tap_cc_line); tor_free(ntor_cc_line); tor_free(extra_info_line); + tor_free(proto_line);
return output; }
tor-commits@lists.torproject.org