Browse Source

Use tor_malloc_zero() in pt tests

Fixes for PT tests merged with 8402; patch from Yawning.
Nick Mathewson 9 years ago
parent
commit
43a47ae726
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/test/test_pt.c

+ 2 - 2
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();