mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-20 02:09:24 +01:00
Merge branch 'maint-0.3.3'
This commit is contained in:
commit
5278d72f97
5
changes/bug24903
Normal file
5
changes/bug24903
Normal file
@ -0,0 +1,5 @@
|
||||
o Minor bugfixes (controller, reliability):
|
||||
- Avoid a (nonfatal) assertion failure when extending a one-hop circuit
|
||||
from the controller to become a multihop circuit. Fixes bug 24903;
|
||||
bugfix on 0.2.5.2-alpha.
|
||||
|
@ -3530,6 +3530,9 @@ handle_control_extendcircuit(control_connection_t *conn, uint32_t len,
|
||||
goto done;
|
||||
}
|
||||
circuit_append_new_exit(circ, info);
|
||||
if (circ->build_state->desired_path_len > 1) {
|
||||
circ->build_state->onehop_tunnel = 0;
|
||||
}
|
||||
extend_info_free(info);
|
||||
first_node = 0;
|
||||
});
|
||||
|
Loading…
Reference in New Issue
Block a user