From: Nick Mathewson Date: Thu, 11 Sep 2014 13:17:13 +0000 (-0400) Subject: Use tor_malloc_zero() in pt tests X-Git-Tag: tor-0.2.6.1-alpha~131 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=43a47ae7265e0030e0e275fbf01caf1c313710e3;p=thirdparty%2Ftor.git Use tor_malloc_zero() in pt tests Fixes for PT tests merged with 8402; patch from Yawning. --- diff --git a/src/test/test_pt.c b/src/test/test_pt.c index b45151e8b7..05ba24e65a 100644 --- a/src/test/test_pt.c +++ b/src/test/test_pt.c @@ -33,7 +33,7 @@ test_pt_parsing(void) transport_t *transport = NULL; tor_addr_t test_addr; - managed_proxy_t *mp = tor_malloc(sizeof(managed_proxy_t)); + managed_proxy_t *mp = tor_malloc_zero(sizeof(managed_proxy_t)); mp->conf_state = PT_PROTO_INFANT; mp->transports = smartlist_new(); @@ -363,7 +363,7 @@ test_pt_configure_proxy(void *arg) control_testing_set_global_event_mask(EVENT_TRANSPORT_LAUNCHED); - mp = tor_malloc(sizeof(managed_proxy_t)); + mp = tor_malloc_zero(sizeof(managed_proxy_t)); mp->conf_state = PT_PROTO_ACCEPTING_METHODS; mp->transports = smartlist_new(); mp->transports_to_launch = smartlist_new();