From: Nick Mathewson Date: Sat, 11 Jul 2015 20:47:21 +0000 (-0400) Subject: Fix a leak in test_microdesc (CID 1311631) X-Git-Tag: tor-0.2.7.2-alpha~50 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8507d75c8231a3af372beb0c695af078b4e27a7b;p=thirdparty%2Ftor.git Fix a leak in test_microdesc (CID 1311631) --- diff --git a/src/test/test_microdesc.c b/src/test/test_microdesc.c index a4b9a0cc05..b205eff24e 100644 --- a/src/test/test_microdesc.c +++ b/src/test/test_microdesc.c @@ -834,10 +834,10 @@ test_md_corrupt_desc(void *arg) cp, cp+strlen(cp), SAVED_IN_JOURNAL, 0, time(NULL), NULL); tt_int_op(smartlist_len(sl), ==, 0); - smartlist_free(sl); done: tor_free(cp); + smartlist_free(sl); } struct testcase_t microdesc_tests[] = {