Skip to content
Snippets Groups Projects
Commit b1a32761 authored by George Kadianakis's avatar George Kadianakis
Browse files

Merge branch 'maint-0.4.4'

parents be6b30e6 e500ea2e
Branches
Tags
No related merge requests found
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.
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment