mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-10 05:03:43 +01:00
Fix a crash bug when testing reachability
Fixes bug 25415; bugfix on 0.3.3.2-alpha.
This commit is contained in:
parent
e5a990fc5a
commit
699bb803ba
4
changes/bug25415
Normal file
4
changes/bug25415
Normal file
@ -0,0 +1,4 @@
|
||||
o Major bugfixes (directory authority):
|
||||
- Avoid a crash when testing router reachability on a router that could
|
||||
have an ed25519 ID, but which does not. Fixes bug 25415; bugfix on
|
||||
0.3.3.2-alpha.
|
@ -3392,7 +3392,8 @@ dirserv_single_reachability_test(time_t now, routerinfo_t *router)
|
||||
tor_assert(node);
|
||||
|
||||
if (options->AuthDirTestEd25519LinkKeys &&
|
||||
node_supports_ed25519_link_authentication(node, 1)) {
|
||||
node_supports_ed25519_link_authentication(node, 1) &&
|
||||
router->cache_info.signing_key_cert) {
|
||||
ed_id_key = &router->cache_info.signing_key_cert->signing_key;
|
||||
} else {
|
||||
ed_id_key = NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user