Commit 5f301066 authored by Nick Mathewson's avatar Nick Mathewson 🦀
Browse files

Fix a remaining bug in Robert's bug1859 fix.

When intro->extend_info is created for an introduction point, it
only starts out with a nickname, not necessarily an identity digest.
Thus, doing router_get_by_digest isn't necessarily safe.
parent 0e8d1c22
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -755,6 +755,9 @@ rend_client_get_random_intro(const rend_data_t *rend_query)
  intro = smartlist_get(entry->parsed->intro_nodes, i);
  /* Do we need to look up the router or is the extend info complete? */
  if (!intro->extend_info->onion_key) {
    if (tor_digest_is_zero(intro->extend_info->identity_digest))
      router = router_get_by_hexdigest(intro->extend_info->nickname);
    else
      router = router_get_by_digest(intro->extend_info->identity_digest);
    if (!router) {
      log_info(LD_REND, "Unknown router with nickname '%s'; trying another.",