summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-04-16 08:49:14 +0000
committerRoger Dingledine <arma@torproject.org>2004-04-16 08:49:14 +0000
commit359c1fb9aa0e0c2410f0e1d29a8153e88fff42e1 (patch)
tree067fdc2fb108df5309ba0ce13f6de449efcb8b6e
parent4ec4c800d73599b6b213f3ada9f04abd143e482b (diff)
downloadtor-359c1fb9aa0e0c2410f0e1d29a8153e88fff42e1.tar.gz
tor-359c1fb9aa0e0c2410f0e1d29a8153e88fff42e1.zip
wait a minute, weasel said there was a memory-stomping bug here
let's see if we find it svn:r1639
-rw-r--r--src/or/connection_edge.c2
1 files changed, 2 insertions, 0 deletions
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;
}
}