diff options
author | Roger Dingledine <arma@torproject.org> | 2005-07-18 23:18:00 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-07-18 23:18:00 +0000 |
commit | e479cc935e9397b7cae65522de997e4405538202 (patch) | |
tree | 303649ce54923b2fe174df5b02f230dc1133eff5 | |
parent | bb97d7f4ea9e18e33831e1d4e4ae6cb565c216da (diff) | |
download | tor-e479cc935e9397b7cae65522de997e4405538202.tar tor-e479cc935e9397b7cae65522de997e4405538202.tar.gz |
stop asserting if we have a controller listening for circuit events
and we're offline so we fail to make a circuit and it tries to notify
us about the zero-length circuit.
svn:r4600
-rw-r--r-- | src/or/circuitbuild.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 67fcf1b7b..307497a0a 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -79,7 +79,6 @@ circuit_list_path(circuit_t *circ, int verbose) char buf[128]; char *s; tor_assert(CIRCUIT_IS_ORIGIN(circ)); - tor_assert(circ->cpath); elements = smartlist_create(); |