From 4d9eb4dd0e67190f8e3bf5300e85611d8605400c Mon Sep 17 00:00:00 2001 From: teor Date: Tue, 26 Feb 2019 22:14:30 +1000 Subject: test/shared-random: Stop leaking shared random state in the unit tests Stop leaking parts of the shared random state in the shared-random unit tests. Fixes bug 29599; bugfix on 0.2.9.1-alpha. --- src/test/test_shared_random.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/test/test_shared_random.c b/src/test/test_shared_random.c index 6a8c1abaff..cebe772d94 100644 --- a/src/test/test_shared_random.c +++ b/src/test/test_shared_random.c @@ -594,8 +594,8 @@ test_vote(void *arg) } done: - sr_commit_free(our_commit); UNMOCK(trusteddirserver_get_by_v3_auth_digest); + sr_state_free(); } static const char *sr_state_str = "Version 1\n" @@ -829,6 +829,7 @@ test_sr_compute_srv(void *arg) done: UNMOCK(trusteddirserver_get_by_v3_auth_digest); + sr_state_free(); } /** Return a minimal vote document with a current SRV value set to @@ -1094,7 +1095,7 @@ test_state_transition(void *arg) } done: - return; + sr_state_free(); } static void -- cgit v1.2.3-54-g00ecf