summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/tlslegacy/tlslegacytest.c
diff options
context:
space:
mode:
authortb <>2021-11-20 16:36:55 +0000
committertb <>2021-11-20 16:36:55 +0000
commit105c69b5d010aec960fdbf571dd0598e0436e293 (patch)
tree7a5c5f2efe0ebdf1f0aaa3b7ae5a3d15c5a14b92 /src/regress/lib/libssl/tlslegacy/tlslegacytest.c
parentfa9c14e45d468ee5b1042cd1b44a65ed1b6d273f (diff)
downloadopenbsd-105c69b5d010aec960fdbf571dd0598e0436e293.tar.gz
openbsd-105c69b5d010aec960fdbf571dd0598e0436e293.tar.bz2
openbsd-105c69b5d010aec960fdbf571dd0598e0436e293.zip
Switch to BIO_up_ref() instead of adjusting references manually.
Diffstat (limited to 'src/regress/lib/libssl/tlslegacy/tlslegacytest.c')
-rw-r--r--src/regress/lib/libssl/tlslegacy/tlslegacytest.c10
1 files changed, 3 insertions, 7 deletions
diff --git a/src/regress/lib/libssl/tlslegacy/tlslegacytest.c b/src/regress/lib/libssl/tlslegacy/tlslegacytest.c
index 58e452e911..17e19448d8 100644
--- a/src/regress/lib/libssl/tlslegacy/tlslegacytest.c
+++ b/src/regress/lib/libssl/tlslegacy/tlslegacytest.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: tlslegacytest.c,v 1.4 2021/08/30 17:34:02 tb Exp $ */ 1/* $OpenBSD: tlslegacytest.c,v 1.5 2021/11/20 16:36:55 tb Exp $ */
2/* 2/*
3 * Copyright (c) 2015, 2016, 2017, 2020 Joel Sing <jsing@openbsd.org> 3 * Copyright (c) 2015, 2016, 2017, 2020 Joel Sing <jsing@openbsd.org>
4 * 4 *
@@ -589,9 +589,8 @@ tlslegacy_client_test(int testno, struct tlslegacy_client_test *tct)
589 goto failure; 589 goto failure;
590 } 590 }
591 591
592 rbio->references = 2; 592 BIO_up_ref(rbio);
593 wbio->references = 2; 593 BIO_up_ref(wbio);
594
595 SSL_set_bio(ssl, rbio, wbio); 594 SSL_set_bio(ssl, rbio, wbio);
596 595
597 if (SSL_connect(ssl) == 1) { 596 if (SSL_connect(ssl) == 1) {
@@ -611,9 +610,6 @@ tlslegacy_client_test(int testno, struct tlslegacy_client_test *tct)
611 SSL_CTX_free(ssl_ctx); 610 SSL_CTX_free(ssl_ctx);
612 SSL_free(ssl); 611 SSL_free(ssl);
613 612
614 rbio->references = 1;
615 wbio->references = 1;
616
617 BIO_free(rbio); 613 BIO_free(rbio);
618 BIO_free(wbio); 614 BIO_free(wbio);
619 615