tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit b1a32761bec22443b8ac745d798b86a4c9d5bd2d
parent be6b30e642eafc8ad9552e08ab117ac2a9900623
Author: George Kadianakis <desnacked@riseup.net>
Date:   Thu,  9 Jul 2020 17:08:34 +0300

Merge branch 'maint-0.4.4'

Diffstat:
Achanges/ticket34087 | 3+++
Msrc/feature/hs/hs_client.c | 6++++--
2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/changes/ticket34087 b/changes/ticket34087 @@ -0,0 +1,3 @@ + o Minor bugfix (onion service v3 client): + - Remove a BUG() warning that can occur naturally. Fixes bug 34087; bugfix + on 0.3.2.1-alpha. diff --git a/src/feature/hs/hs_client.c b/src/feature/hs/hs_client.c @@ -1066,8 +1066,10 @@ close_or_reextend_intro_circ(origin_circuit_t *intro_circ) tor_assert(intro_circ); desc = hs_cache_lookup_as_client(&intro_circ->hs_ident->identity_pk); - if (BUG(desc == NULL)) { - /* We can't continue without a descriptor. */ + if (desc == NULL) { + /* We can't continue without a descriptor. This is possible if the cache + * was cleaned up between the intro point established and the reception of + * the introduce ack. */ goto close; } /* We still have the descriptor, great! Let's try to see if we can