summaryrefslogtreecommitdiff
path: root/src/test/test_tortls.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2018-05-09 08:25:52 -0400
committerNick Mathewson <nickm@torproject.org>2018-05-09 08:25:52 -0400
commit9df20f60762dbd21796bb8c9c621585662e7f708 (patch)
tree7134a05ad3b9882787158033c571ca8dd5ecbd39 /src/test/test_tortls.c
parente6d6347690d085dddb57d087a952750131b80758 (diff)
parenta639a67844909bd05fadaea5c1847f5e9af55cde (diff)
downloadtor-9df20f60762dbd21796bb8c9c621585662e7f708.tar.gz
tor-9df20f60762dbd21796bb8c9c621585662e7f708.zip
Merge branch 'maint-0.3.3'
Diffstat (limited to 'src/test/test_tortls.c')
-rw-r--r--src/test/test_tortls.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/test/test_tortls.c b/src/test/test_tortls.c
index ffa641ec41..896e093968 100644
--- a/src/test/test_tortls.c
+++ b/src/test/test_tortls.c
@@ -847,8 +847,10 @@ test_tortls_classify_client_ciphers(void *ignored)
sk_SSL_CIPHER_zero(ciphers);
one = get_cipher_by_name("ECDHE-RSA-AES256-GCM-SHA384");
+ tt_assert(one);
one->id = 0x00ff;
two = get_cipher_by_name("ECDHE-RSA-AES128-GCM-SHA256");
+ tt_assert(two);
two->id = 0x0000;
sk_SSL_CIPHER_push(ciphers, one);
tls->client_cipher_list_type = 0;
@@ -918,6 +920,7 @@ test_tortls_client_is_using_v2_ciphers(void *ignored)
ciphers = sk_SSL_CIPHER_new_null();
SSL_CIPHER *one = get_cipher_by_name("ECDHE-RSA-AES256-GCM-SHA384");
+ tt_assert(one);
one->id = 0x00ff;
sk_SSL_CIPHER_push(ciphers, one);
sess->ciphers = ciphers;