tor

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

commit 6ba2881aec7299fb486ab0f821c4f2ddcc88190e
parent 129456e22257d24c380bed0f9ebc9d68955a01df
Author: Nick Mathewson <nickm@torproject.org>
Date:   Wed, 24 Jan 2018 12:07:45 -0500

Fix a memory leak in scheduler/loop_kist

Fixes bug 25005.

Diffstat:
Achanges/bug25005 | 4++++
Msrc/test/test_scheduler.c | 1+
2 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/changes/bug25005 b/changes/bug25005 @@ -0,0 +1,4 @@ + o Minor bugfixes (unit tests): + - Fix a memory leak in the scheduler/loop_kist unit test. Fixes bug + 25005; bugfix on 0.3.2.7-rc. + diff --git a/src/test/test_scheduler.c b/src/test/test_scheduler.c @@ -864,6 +864,7 @@ test_scheduler_loop_kist(void *arg) tt_assert(ch3); ch3->magic = TLS_CHAN_MAGIC; ch3->state = CHANNEL_STATE_OPEN; + circuitmux_free(ch3->cmux); ch3->cmux = circuitmux_alloc(); channel_register(ch3); tt_assert(ch3->registered);