[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] [tor/master] clobber connections with different number than we clobber circuits
Author: Roger Dingledine <arma@xxxxxxxxxxxxxx>
Date: Sat, 21 Nov 2009 23:02:10 -0500
Subject: clobber connections with different number than we clobber circuits
Commit: 4f8b36a1e2dbcfeaf0c5c31a92aa0f26f365b890
---
ChangeLog | 4 ++++
src/or/connection.c | 2 +-
2 files changed, 5 insertions(+), 1 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 3fa7b38..2b55d76 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,10 @@ Changes in version 0.2.2.7-alpha - 2009-??-??
o Minor bugfixes:
- Fix compilation on OSX 10.3, which has a stub mlockall() but
hides it. Bugfix on 0.2.2.6-alpha.
+ - After we free an internal connection structure, overwrite it
+ with a different memory value than we use for overwriting a freed
+ internal circuit structure. Should help with debugging. Suggested
+ by bug 1055.
Changes in version 0.2.2.6-alpha - 2009-11-19
diff --git a/src/or/connection.c b/src/or/connection.c
index 4874041..0600d97 100644
--- a/src/or/connection.c
+++ b/src/or/connection.c
@@ -423,7 +423,7 @@ _connection_free(connection_t *conn)
connection_or_remove_from_identity_map(TO_OR_CONN(conn));
}
- memset(mem, 0xAA, memlen); /* poison memory */
+ memset(mem, 0xCC, memlen); /* poison memory */
tor_free(mem);
}
--
1.5.6.5