From 3fa296ce28ea875877ac2725dfd213e176881964 Mon Sep 17 00:00:00 2001 From: Nick Mathewson Date: Sat, 26 Apr 2014 00:12:16 -0400 Subject: [PATCH] fix uninitialized memory reads from test_geoip_with_pt. Found with valgrind --- src/test/test.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/test/test.c b/src/test/test.c index f7e26a6f3c..c96b396599 100644 --- a/src/test/test.c +++ b/src/test/test.c @@ -1018,6 +1018,8 @@ test_geoip_with_pt(void) get_options_mutable()->BridgeRelay = 1; get_options_mutable()->BridgeRecordUsageByCountry = 1; + memset(&in6, 0, sizeof(in6)); + /* No clients seen yet. */ s = geoip_get_transport_history(); tor_assert(!s); -- 2.47.3