diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-12-11 21:19:03 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-12-11 21:19:03 -0500 |
commit | 7601edc29a1c17344bea648b56c1b26fc9ba322c (patch) | |
tree | 9f8dc4e35c01a297c5d4dd26a6cf471928c03708 /src/test | |
parent | 3e4a1ed7bb1e67a81f47dc8067774d2907a15c81 (diff) | |
parent | d01a6c07ae3d9e6ce10b5723b7aa1ba301d810db (diff) | |
download | tor-7601edc29a1c17344bea648b56c1b26fc9ba322c.tar.gz tor-7601edc29a1c17344bea648b56c1b26fc9ba322c.zip |
Merge remote-tracking branch 'dgoulet/bug20936_030_01'
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/test_circuituse.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/src/test/test_circuituse.c b/src/test/test_circuituse.c index edbc9f6391..27a87660ff 100644 --- a/src/test/test_circuituse.c +++ b/src/test/test_circuituse.c @@ -3,6 +3,8 @@ * Copyright (c) 2007-2016, The Tor Project, Inc. */ /* See LICENSE for licensing information */ +#define CIRCUITLIST_PRIVATE + #include "or.h" #include "test.h" #include "test_helpers.h" @@ -93,7 +95,7 @@ test_circuit_is_available_for_use_ret_false_unusable_for_new_conns(void *arg) tt_int_op(0, ==, circuit_is_available_for_use(circ)); done: - tor_free(circ); + circuit_free(circ); } static void @@ -103,13 +105,13 @@ test_circuit_is_available_for_use_returns_false_for_onehop_tunnel(void *arg) circuit_t *circ = dummy_origin_circuit_new(30); origin_circuit_t *oc = TO_ORIGIN_CIRCUIT(circ); - oc->build_state = tor_malloc(sizeof(cpath_build_state_t)); + oc->build_state = tor_malloc_zero(sizeof(cpath_build_state_t)); oc->build_state->onehop_tunnel = 1; tt_int_op(0, ==, circuit_is_available_for_use(circ)); done: - tor_free(circ); + circuit_free(circ); } static void @@ -119,13 +121,13 @@ test_circuit_is_available_for_use_returns_true_for_clean_circuit(void *arg) circuit_t *circ = dummy_origin_circuit_new(30); origin_circuit_t *oc = TO_ORIGIN_CIRCUIT(circ); - oc->build_state = tor_malloc(sizeof(cpath_build_state_t)); + oc->build_state = tor_malloc_zero(sizeof(cpath_build_state_t)); oc->build_state->onehop_tunnel = 0; tt_int_op(1, ==, circuit_is_available_for_use(circ)); done: - tor_free(circ); + circuit_free(circ); } static int |