diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-29 13:49:43 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-29 13:49:43 -0400 |
commit | 75a6e7e256719c33329cd172248f4f2dfc80ad8c (patch) | |
tree | 0cbb7be791219c8d7476d5f77a54ba30d4a2623a /src | |
parent | d3ecb3a8d6d55575d4ab3f80fed5e2b2fdcc561a (diff) | |
parent | 36c372581f8d7651c336f69b9b1b051d3d31d548 (diff) | |
download | tor-75a6e7e256719c33329cd172248f4f2dfc80ad8c.tar.gz tor-75a6e7e256719c33329cd172248f4f2dfc80ad8c.zip |
Merge branch 'maint-0.3.3' into maint-0.3.4
Diffstat (limited to 'src')
-rw-r--r-- | src/test/test_channelpadding.c | 1 | ||||
-rw-r--r-- | src/test/test_hs_descriptor.c | 3 | ||||
-rw-r--r-- | src/test/test_shared_random.c | 1 |
3 files changed, 5 insertions, 0 deletions
diff --git a/src/test/test_channelpadding.c b/src/test/test_channelpadding.c index 661a356ae4..4261bc1b67 100644 --- a/src/test/test_channelpadding.c +++ b/src/test/test_channelpadding.c @@ -701,6 +701,7 @@ test_channelpadding_consensus(void *arg) memcpy(relay->identity_digest, ((channel_tls_t *)chan)->conn->identity_digest, DIGEST_LEN); smartlist_add(current_md_consensus->routerstatus_list, relay); + relay = NULL; /* Prevent double-free */ tried_to_write_cell = 0; decision = channelpadding_decide_to_pad_channel(chan); diff --git a/src/test/test_hs_descriptor.c b/src/test/test_hs_descriptor.c index b84941a965..14f1a664e7 100644 --- a/src/test/test_hs_descriptor.c +++ b/src/test/test_hs_descriptor.c @@ -210,6 +210,7 @@ test_link_specifier(void *arg) tt_int_op(link_specifier_get_un_ipv4_port(ls), OP_EQ, spec.u.ap.port); link_specifier_free(ls); + ls = NULL; tor_free(b64); } @@ -240,6 +241,7 @@ test_link_specifier(void *arg) tt_int_op(link_specifier_get_un_ipv6_port(ls), OP_EQ, spec.u.ap.port); link_specifier_free(ls); + ls = NULL; tor_free(b64); } @@ -267,6 +269,7 @@ test_link_specifier(void *arg) tt_mem_op(spec.u.legacy_id, OP_EQ, id, DIGEST_LEN); link_specifier_free(ls); + ls = NULL; tor_free(b64); } diff --git a/src/test/test_shared_random.c b/src/test/test_shared_random.c index 34de6d258f..2b3c8c93be 100644 --- a/src/test/test_shared_random.c +++ b/src/test/test_shared_random.c @@ -875,6 +875,7 @@ test_sr_setup_commits(void) /* Now during REVEAL phase save commit D by restoring its reveal. */ set_sr_phase(SR_PHASE_REVEAL); save_commit_to_state(place_holder); + place_holder = NULL; tt_str_op(commit_d->encoded_reveal, OP_EQ, "DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD"); /* Go back to an empty encoded reveal value. */ |