aboutsummaryrefslogtreecommitdiff
path: root/src/core/or
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2020-02-14 08:17:16 -0500
committerNick Mathewson <nickm@torproject.org>2020-02-14 08:17:16 -0500
commita010dbf94c061d17b6c0225c1b3e52ca0df84b5e (patch)
tree26d1a8a93c110444981fdf7de558699985ad13f4 /src/core/or
parent98899f20ad22e97c03235cfe13ff1fe416a15509 (diff)
parenta79841fd83b6d800796c04855841170c364ff2a9 (diff)
downloadtor-a010dbf94c061d17b6c0225c1b3e52ca0df84b5e.tar.gz
tor-a010dbf94c061d17b6c0225c1b3e52ca0df84b5e.zip
Merge branch 'maint-0.4.3'
Diffstat (limited to 'src/core/or')
-rw-r--r--src/core/or/circuitmux.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/or/circuitmux.c b/src/core/or/circuitmux.c
index 1f79ea4d91..da95e93657 100644
--- a/src/core/or/circuitmux.c
+++ b/src/core/or/circuitmux.c
@@ -926,7 +926,7 @@ circuitmux_detach_circuit,(circuitmux_t *cmux, circuit_t *circ))
/* Wipe and free the hash entry */
// This isn't sensitive, but we want to be sure to know if we're accessing
// this accidentally.
- memwipe(hashent, 0xef, sizeof(hashent));
+ memwipe(hashent, 0xef, sizeof(*hashent));
tor_free(hashent);
}
}