commit a010dbf94c061d17b6c0225c1b3e52ca0df84b5e
parent 98899f20ad22e97c03235cfe13ff1fe416a15509
Author: Nick Mathewson <nickm@torproject.org>
Date: Fri, 14 Feb 2020 08:17:16 -0500
Merge branch 'maint-0.4.3'
Diffstat:
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);
}
}