From: cypherpunks Date: Mon, 16 Nov 2015 12:21:56 +0000 (+0100) Subject: Fix memory leak in ntor test X-Git-Tag: tor-0.2.8.1-alpha~189 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4ae555facef43555452cae42ba658de4f87cfa7b;p=thirdparty%2Ftor.git Fix memory leak in ntor test --- diff --git a/src/test/test_ntor_cl.c b/src/test/test_ntor_cl.c index bfbf13a476..915a5d0a7c 100644 --- a/src/test/test_ntor_cl.c +++ b/src/test/test_ntor_cl.c @@ -106,6 +106,7 @@ server1(int argc, char **argv) done: tor_free(keys); tor_free(hexkeys); + dimap_free(keymap, NULL); return result; }