From: Roger Dingledine Date: Wed, 2 Jun 2004 18:11:28 +0000 (+0000) Subject: bugfix: while closing a circuit, we were freeing the conns that were X-Git-Tag: tor-0.0.7rc1~12 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fbbb4d01c33dc7d1e8a35c495a8e4544e45e68e8;p=thirdparty%2Ftor.git bugfix: while closing a circuit, we were freeing the conns that were pending resolve, but not removing them from the pending resolve list svn:r1933 --- diff --git a/src/or/circuitlist.c b/src/or/circuitlist.c index e87931f52e..c050156c82 100644 --- a/src/or/circuitlist.c +++ b/src/or/circuitlist.c @@ -372,6 +372,7 @@ int _circuit_mark_for_close(circuit_t *circ) { while(circ->resolving_streams) { conn = circ->resolving_streams; circ->resolving_streams = conn->next_stream; + connection_dns_remove(conn); /* remove it from resolve lists */ log_fn(LOG_INFO,"Freeing resolving-conn."); connection_free(conn); }