diff options
author | Nick Mathewson <nickm@torproject.org> | 2020-02-14 08:16:22 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2020-02-14 08:16:22 -0500 |
commit | a79841fd83b6d800796c04855841170c364ff2a9 (patch) | |
tree | e05406424ccd28c69c2074b6fb09c97aac86a05d /src | |
parent | 6c5307e42f74d4f0b0a0541fa7e8fe3cb246403a (diff) | |
parent | 393bbd823ec32f8fb3636391945e6c6663ff1408 (diff) | |
download | tor-a79841fd83b6d800796c04855841170c364ff2a9.tar.gz tor-a79841fd83b6d800796c04855841170c364ff2a9.zip |
Merge branch 'ticket33290_v2_042' into maint-0.4.3
Diffstat (limited to 'src')
-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 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); } } |