From 9deb3c61feb85563aeb336fec97fa3845a193f08 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Wed, 12 Aug 2015 12:27:45 -0400 Subject: Fix a memory leak when adding an ri with expired ed certs Fixes bug 16539; bugfix on 0.2.7.2-alpha. --- src/or/routerlist.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/or/routerlist.c') diff --git a/src/or/routerlist.c b/src/or/routerlist.c index dc48862201..aebbd480d2 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -3295,6 +3295,8 @@ router_add_to_routerlist(routerinfo_t *router, const char **msg, /* Make sure that it isn't expired. */ if (router->cert_expiration_time < approx_time()) { + routerinfo_free(router); + *msg = "Some certs on this router are expired."; return ROUTER_CERTS_EXPIRED; } -- cgit v1.2.3-54-g00ecf