diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-02-14 08:16:01 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-02-14 08:16:01 -0500 |
commit | 393bbd823ec32f8fb3636391945e6c6663ff1408 (patch) | |
tree | 28fbd1eb48b91dfa67a8df084be4bebcd1ac10c3 /src/core | |
parent | fd1686c7d8df8d8159fcaab1c59dfabe154afd88 (diff) | |
parent | c1649ab01522f6258fc2555869cbf3abb7535515 (diff) | |
download | tor-393bbd823ec32f8fb3636391945e6c6663ff1408.tar.gz tor-393bbd823ec32f8fb3636391945e6c6663ff1408.zip |
Merge branch 'ticket33290_v2_041' into ticket33290_v2_042
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/or/circuitmux.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/or/circuitmux.c b/src/core/or/circuitmux.c index 72f6ba662b..4b19a12e3c 100644 --- a/src/core/or/circuitmux.c +++ b/src/core/or/circuitmux.c @@ -978,7 +978,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); } } |