mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2025-02-25 07:07:52 +01:00
fix a segv
svn:r5311
This commit is contained in:
parent
e7e170a59e
commit
9b6c5614c6
1 changed files with 1 additions and 1 deletions
|
@ -1222,7 +1222,7 @@ static int
|
|||
circuit_consider_stop_edge_reading(circuit_t *circ, crypt_path_t *layer_hint)
|
||||
{
|
||||
connection_t *conn = NULL;
|
||||
unsigned domain = conn->cpath_layer ? LD_APP : LD_EXIT;
|
||||
unsigned domain = layer_hint ? LD_APP : LD_EXIT;
|
||||
|
||||
if (!layer_hint) {
|
||||
debug(domain,"considering circ->package_window %d", circ->package_window);
|
||||
|
|
Loading…
Add table
Reference in a new issue