tor

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

commit 8a2786072008f18ccd5bace4f014057d06345af0
parent 2c4355fcec1a3644c79d9fdf0a4f52262898890d
Author: David Goulet <dgoulet@torproject.org>
Date:   Thu, 21 Jan 2021 12:27:34 -0500

Merge branch 'maint-0.4.5'

Diffstat:
Achanges/bug32666 | 3+++
Msrc/core/or/circuitbuild.c | 1-
2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/changes/bug32666 b/changes/bug32666 @@ -0,0 +1,3 @@ + o Minor bugfixes (onion services): + - Avoid a non-fatal assertion in certain edge-cases when establishing a + circuit to onion service. Fixes bug 32666; bugfix on 0.3.0.3-alpha. diff --git a/src/core/or/circuitbuild.c b/src/core/or/circuitbuild.c @@ -2456,7 +2456,6 @@ onion_extend_cpath(origin_circuit_t *circ) choose_good_middle_server(purpose, state, circ->cpath, cur_len); if (r) { info = extend_info_from_node(r, 0); - tor_assert_nonfatal(info); } }