mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-24 20:33:31 +01:00
Merge remote branch 'rransom/fix2195-fix' into maint-0.2.2
This commit is contained in:
commit
251b40f720
6
changes/fix2195-fix
Normal file
6
changes/fix2195-fix
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
o Minor bugfixes:
|
||||||
|
- Do not dereference NULL if a bridge fails to build its
|
||||||
|
extra-info descriptor. Previously, we would have dereferenced
|
||||||
|
NULL. Found by an anonymous commenter on Trac. Bugfix on
|
||||||
|
0.2.2.19-alpha.
|
||||||
|
|
@ -1523,7 +1523,7 @@ router_rebuild_descriptor(int force)
|
|||||||
/* Let bridges serve their own descriptors unencrypted, so they can
|
/* Let bridges serve their own descriptors unencrypted, so they can
|
||||||
* pass reachability testing. (If they want to be harder to notice,
|
* pass reachability testing. (If they want to be harder to notice,
|
||||||
* they can always leave the DirPort off). */
|
* they can always leave the DirPort off). */
|
||||||
if (!options->BridgeRelay)
|
if (ei && !options->BridgeRelay)
|
||||||
ei->cache_info.send_unencrypted = 1;
|
ei->cache_info.send_unencrypted = 1;
|
||||||
|
|
||||||
router_get_router_hash(ri->cache_info.signed_descriptor_body,
|
router_get_router_hash(ri->cache_info.signed_descriptor_body,
|
||||||
|
Loading…
Reference in New Issue
Block a user