From f7b40f45b733f3a9a483e764b742eb5b5148ce1a Mon Sep 17 00:00:00 2001 From: Sebastian Hahn Date: Thu, 10 Jun 2010 16:18:26 +0200 Subject: [PATCH] Don't crash when reading cached*consensus files on startup Fixes bug 1352 --- changes/bug1532 | 4 ++++ src/or/dirserv.c | 2 ++ 2 files changed, 6 insertions(+) create mode 100644 changes/bug1532 diff --git a/changes/bug1532 b/changes/bug1532 new file mode 100644 index 0000000000..ed2690418b --- /dev/null +++ b/changes/bug1532 @@ -0,0 +1,4 @@ + o Major bugfixes + - Tor directory authorities no longer crash when started with a + cached-microdesc-consensus file in their data directory. Bugfix on + 0.2.2.6-alpha, fixes bug 1532. diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 8b215011f3..24b4d5483b 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -1597,6 +1597,8 @@ dirserv_get_runningrouters(void) cached_dir_t * dirserv_get_consensus(const char *flavor_name) { + if (!cached_consensuses) + return NULL; return strmap_get(cached_consensuses, flavor_name); }