From: Roger Dingledine Date: Fri, 16 Apr 2004 08:49:14 +0000 (+0000) Subject: wait a minute, weasel said there was a memory-stomping bug here X-Git-Tag: tor-0.0.6incompat-merged~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=359c1fb9aa0e0c2410f0e1d29a8153e88fff42e1;p=thirdparty%2Ftor.git wait a minute, weasel said there was a memory-stomping bug here let's see if we find it svn:r1639 --- diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index 82ab4c0f3b..8bfe0b5512 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -950,6 +950,8 @@ int connection_ap_handshake_attach_circuit(connection_t *conn) { } rendcirc->timestamp_dirty = time(NULL); introcirc->timestamp_dirty = time(NULL); + assert_circuit_ok(rendcirc); + assert_circuit_ok(introcirc); return 0; } }