From fbbb4d01c33dc7d1e8a35c495a8e4544e45e68e8 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Wed, 2 Jun 2004 18:11:28 +0000 Subject: [PATCH] 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 --- src/or/circuitlist.c | 1 + 1 file changed, 1 insertion(+) 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); } -- 2.47.3