From 1c39dbd53a4c47ac3bfd6770d0ca2f8f058f888b Mon Sep 17 00:00:00 2001 From: Sebastian Hahn Date: Fri, 26 Feb 2010 08:00:56 +0100 Subject: Don't segfault when checking the consensus --- src/or/routerparse.c | 1 + 1 file changed, 1 insertion(+) (limited to 'src') diff --git a/src/or/routerparse.c b/src/or/routerparse.c index 99cd29d6d7..940a2d83e1 100644 --- a/src/or/routerparse.c +++ b/src/or/routerparse.c @@ -3078,6 +3078,7 @@ networkstatus_parse_vote_from_string(const char *s, const char **eos_out, { int found_sig = 0; SMARTLIST_FOREACH_BEGIN(footer_tokens, directory_token_t *, _tok) { + tok = _tok; if (tok->tp == K_DIRECTORY_SIGNATURE) found_sig = 1; else if (found_sig) { -- cgit v1.2.3-54-g00ecf