From 53255e925c474f9d5cb30c1de4da025e6d709e9a Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 28 Sep 2016 08:21:33 -0700 Subject: [PATCH] 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 a74a2a9a3b..b93b7c1a13 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; }