tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit a79841fd83b6d800796c04855841170c364ff2a9
parent 6c5307e42f74d4f0b0a0541fa7e8fe3cb246403a
Author: Nick Mathewson <nickm@torproject.org>
Date:   Fri, 14 Feb 2020 08:16:22 -0500

Merge branch 'ticket33290_v2_042' into maint-0.4.3

Diffstat:
Msrc/core/or/circuitmux.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 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); } }