Don't crash when reading cached*consensus files on startup

Fixes bug 1352
This commit is contained in:
Sebastian Hahn 2010-06-10 16:18:26 +02:00
parent bedb59c034
commit f7b40f45b7
2 changed files with 6 additions and 0 deletions

4
changes/bug1532 Normal file
View File

@ -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.

View File

@ -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);
}