From 6329811a8804ff6755727a32e7da4b8ea17593fd Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Thu, 24 Feb 2005 23:01:26 +0000 Subject: [PATCH] fix a seg fault from tor_free_all svn:r3690 --- src/or/routerlist.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/or/routerlist.c b/src/or/routerlist.c index db9f08b6d3..d2de86eb0f 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -709,6 +709,7 @@ routerinfo_t *routerinfo_copy(const routerinfo_t *router) /** Free all storage held by a routerlist rl */ void routerlist_free(routerlist_t *rl) { + tor_assert(rl); SMARTLIST_FOREACH(rl->routers, routerinfo_t *, r, routerinfo_free(r)); smartlist_free(rl->routers); @@ -718,7 +719,8 @@ void routerlist_free(routerlist_t *rl) void routerlist_free_current(void) { - routerlist_free(routerlist); + if (routerlist) + routerlist_free(routerlist); routerlist = NULL; }