[tor-commits] [tor/master] Fix memory leaks in test_entrynodes.c

nickm at torproject.org nickm at torproject.org
Thu Aug 21 16:14:09 UTC 2014


commit b6a725c67e46d274a518b6c5243fffdf1730a23f
Author: Nick Mathewson <nickm at torproject.org>
Date:   Thu Aug 21 10:18:17 2014 -0400

    Fix memory leaks in test_entrynodes.c
    
    [Coverity CID 1232087 and 1232088]
---
 src/test/test_entrynodes.c |    2 ++
 1 file changed, 2 insertions(+)

diff --git a/src/test/test_entrynodes.c b/src/test/test_entrynodes.c
index fbb7625..fab82c3 100644
--- a/src/test/test_entrynodes.c
+++ b/src/test/test_entrynodes.c
@@ -431,6 +431,7 @@ test_entry_guards_parse_state_simple(void *arg)
  done:
   state_lines_free(entry_state_lines);
   or_state_free(state);
+  tor_free(msg);
 }
 
 /** Similar to test_entry_guards_parse_state_simple() but aims to test
@@ -515,6 +516,7 @@ test_entry_guards_parse_state_pathbias(void *arg)
  done:
   or_state_free(state);
   state_lines_free(entry_state_lines);
+  tor_free(msg);
 }
 
 /* Simple test of entry_guards_set_from_config() by specifying a





More information about the tor-commits mailing list