mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-11 05:33:47 +01:00
r13023@Kushana: nickm | 2007-05-20 16:16:36 -0400
More bulletproofing on bug 429 svn:r10231
This commit is contained in:
parent
21a72520ce
commit
a4f5b99e61
@ -1031,6 +1031,7 @@ router_rebuild_descriptor(int force)
|
||||
|
||||
/* Now generate the extrainfo. */
|
||||
ei = tor_malloc_zero(sizeof(extrainfo_t));
|
||||
ei->cache_info.is_extrainfo = 1;
|
||||
strlcpy(ei->nickname, get_options()->Nickname, sizeof(ei->nickname));
|
||||
ei->cache_info.published_on = ri->cache_info.published_on;
|
||||
memcpy(ei->cache_info.identity_digest, ri->cache_info.identity_digest,
|
||||
|
@ -1798,6 +1798,12 @@ extrainfo_insert(routerlist_t *rl, extrainfo_t *ei)
|
||||
extrainfo_t *ei_tmp;
|
||||
routerlist_check_bug_417();
|
||||
|
||||
{
|
||||
/* XXXX020 remove this code once bug 417/404 is fixed. */
|
||||
extrainfo_t *ei_generated = router_get_my_extrainfo();
|
||||
tor_assert(ei_generated != ei);
|
||||
}
|
||||
|
||||
if (!ri) {
|
||||
/* This router is unknown; we can't even verify the signature. Give up.*/
|
||||
goto done;
|
||||
|
Loading…
Reference in New Issue
Block a user