[tor-commits] [tor/master] Fix leaks in test_dir_formats

nickm at torproject.org nickm at torproject.org
Thu May 1 16:31:44 UTC 2014


commit 97664cfd2a83ec79dda7f697054e27daa726ea9d
Author: Nick Mathewson <nickm at torproject.org>
Date:   Sat Apr 26 12:16:12 2014 -0400

    Fix leaks in test_dir_formats
---
 src/test/test_dir.c |    3 +++
 1 file changed, 3 insertions(+)

diff --git a/src/test/test_dir.c b/src/test/test_dir.c
index 9e01bdb..78583fc 100644
--- a/src/test/test_dir.c
+++ b/src/test/test_dir.c
@@ -194,6 +194,7 @@ test_dir_formats(void)
   test_assert(crypto_pk_cmp_keys(rp1->onion_pkey, pk1) == 0);
   test_assert(crypto_pk_cmp_keys(rp1->identity_pkey, pk2) == 0);
   //test_assert(rp1->exit_policy == NULL);
+  tor_free(buf);
 
   strlcpy(buf2,
           "router Fred 10.3.2.1 9005 0 0\n"
@@ -277,6 +278,8 @@ test_dir_formats(void)
     routerinfo_free(r1);
   if (r2)
     routerinfo_free(r2);
+  if (rp2)
+    routerinfo_free(rp2);
 
   tor_free(buf);
   tor_free(pk1_str);





More information about the tor-commits mailing list