diff options
author | Alexander Færøy <ahf@torproject.org> | 2021-01-19 16:59:13 +0000 |
---|---|---|
committer | Alexander Færøy <ahf@torproject.org> | 2021-01-19 17:08:01 +0000 |
commit | 13cf96445377ba97090c759901d2574cdc82ca3c (patch) | |
tree | 8dd434edb7206a1c154dece546a7cac0f71e4c5d /changes/bug32666 | |
parent | e5a0c739d4865b300e904d45c413d5c8f0da304c (diff) | |
download | tor-13cf96445377ba97090c759901d2574cdc82ca3c.tar.gz tor-13cf96445377ba97090c759901d2574cdc82ca3c.zip |
Remove unnecessary non-fatal assertion.
This patch removes a call to `tor_assert_nonfatal()` if
`extend_info_from_node()` returns NULL. This is unnecessary as we
already handle the case where `info` is NULL in the next `if (!info) {
... }` block in the code.
See: tor#32666.
Diffstat (limited to 'changes/bug32666')
-rw-r--r-- | changes/bug32666 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/changes/bug32666 b/changes/bug32666 new file mode 100644 index 0000000000..d487b22148 --- /dev/null +++ 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. |