Switch to BIO_up_ref() instead of adjusting references manually.
authortb <tb@openbsd.org>
Sat, 20 Nov 2021 16:36:55 +0000 (16:36 +0000)
committertb <tb@openbsd.org>
Sat, 20 Nov 2021 16:36:55 +0000 (16:36 +0000)
regress/lib/libssl/server/servertest.c
regress/lib/libssl/tlslegacy/tlslegacytest.c

index a71c5f8..bd0adcd 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: servertest.c,v 1.5 2021/01/22 15:56:17 tb Exp $ */
+/* $OpenBSD: servertest.c,v 1.6 2021/11/20 16:36:55 tb Exp $ */
 /*
  * Copyright (c) 2015, 2016, 2017 Joel Sing <jsing@openbsd.org>
  *
@@ -155,9 +155,8 @@ server_hello_test(int testno, struct server_hello_test *sht)
                goto failure;
        }
 
-       rbio->references = 2;
-       wbio->references = 2;
-
+       BIO_up_ref(rbio);
+       BIO_up_ref(wbio);
        SSL_set_bio(ssl, rbio, wbio);
 
        if (SSL_accept(ssl) != 0) {
@@ -172,11 +171,6 @@ server_hello_test(int testno, struct server_hello_test *sht)
        SSL_CTX_free(ssl_ctx);
        SSL_free(ssl);
 
-       if (rbio != NULL)
-               rbio->references = 1;
-       if (wbio != NULL)
-               wbio->references = 1;
-
        BIO_free(rbio);
        BIO_free(wbio);
 
index 58e452e..17e1944 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: tlslegacytest.c,v 1.4 2021/08/30 17:34:02 tb Exp $ */
+/* $OpenBSD: tlslegacytest.c,v 1.5 2021/11/20 16:36:55 tb Exp $ */
 /*
  * Copyright (c) 2015, 2016, 2017, 2020 Joel Sing <jsing@openbsd.org>
  *
@@ -589,9 +589,8 @@ tlslegacy_client_test(int testno, struct tlslegacy_client_test *tct)
                goto failure;
        }
 
-       rbio->references = 2;
-       wbio->references = 2;
-
+       BIO_up_ref(rbio);
+       BIO_up_ref(wbio);
        SSL_set_bio(ssl, rbio, wbio);
 
        if (SSL_connect(ssl) == 1) {
@@ -611,9 +610,6 @@ tlslegacy_client_test(int testno, struct tlslegacy_client_test *tct)
        SSL_CTX_free(ssl_ctx);
        SSL_free(ssl);
 
-       rbio->references = 1;
-       wbio->references = 1;
-
        BIO_free(rbio);
        BIO_free(wbio);