commit 393bbd823ec32f8fb3636391945e6c6663ff1408
parent fd1686c7d8df8d8159fcaab1c59dfabe154afd88
Author: Nick Mathewson <nickm@torproject.org>
Date: Fri, 14 Feb 2020 08:16:01 -0500
Merge branch 'ticket33290_v2_041' into ticket33290_v2_042
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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);
}
}