tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit 63219eda8aeb9aecf0e302179eb47a16ff26f6e9
parent 1a85ac8c2de77f40212d46569632ec47bc309ba7
Author: Nick Mathewson <nickm@torproject.org>
Date:   Fri, 21 Sep 2018 08:10:39 -0400

Put dirlist_free_all back in routerlist_free_all for unit tests

Diffstat:
Msrc/feature/nodelist/routerlist.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/feature/nodelist/routerlist.c b/src/feature/nodelist/routerlist.c @@ -1424,6 +1424,7 @@ routerlist_free_all(void) { routerlist_free(routerlist); routerlist = NULL; + dirlist_free_all(); if (warned_nicknames) { SMARTLIST_FOREACH(warned_nicknames, char *, cp, tor_free(cp)); smartlist_free(warned_nicknames);