tor

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

commit 58e8094816cb7d2dbc6ecc71892b667e968d9e2d
parent 241b676638285e63bd6e4ca5225444a4b16207be
Author: Nick Mathewson <nickm@torproject.org>
Date:   Mon, 11 Dec 2017 08:01:54 -0500

Fix compilation with --disable-memory-sentinels

We'd broken this with the recent _free() rewrite.

Diffstat:
Msrc/common/memarea.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/common/memarea.c b/src/common/memarea.c @@ -322,7 +322,7 @@ memarea_new(void) return ma; } void -memarea_drop_all(memarea_t *area) +memarea_drop_all_(memarea_t *area) { memarea_clear(area); smartlist_free(area->pieces);