From 359c1fb9aa0e0c2410f0e1d29a8153e88fff42e1 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Fri, 16 Apr 2004 08:49:14 +0000 Subject: [PATCH] wait a minute, weasel said there was a memory-stomping bug here let's see if we find it svn:r1639 --- src/or/connection_edge.c | 2 ++ 1 file changed, 2 insertions(+) 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; } }