[openssl] openssl-3.0 update

Dr. Paul Dale pauli at openssl.org
Tue Feb 22 23:22:16 UTC 2022


The branch openssl-3.0 has been updated
       via  46119286c16341734b3cb60945fb07d1ea30eb81 (commit)
      from  ad910cc482c8e06d04a141a9f5f79172a6e56f66 (commit)


- Log -----------------------------------------------------------------
commit 46119286c16341734b3cb60945fb07d1ea30eb81
Author: Jiasheng Jiang <jiasheng at iscas.ac.cn>
Date:   Mon Feb 21 10:54:29 2022 +0800

    test/sslapitest.c: Add check for SSL_CTX_new
    
    As the potential failure of the memory allocation, it should
    be better to check the return value of SSL_CTX_new() and return
    error if fails, like SSL_CTX_new_ex().
    
    Signed-off-by: Jiasheng Jiang <jiasheng at iscas.ac.cn>
    
    Reviewed-by: Matt Caswell <matt at openssl.org>
    Reviewed-by: Paul Dale <pauli at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/17739)
    
    (cherry picked from commit b0317df2311769e02d9ceb4e7afe19521f8ffbf1)

-----------------------------------------------------------------------

Summary of changes:
 test/sslapitest.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/test/sslapitest.c b/test/sslapitest.c
index 9056fa28f1..b2f3471548 100644
--- a/test/sslapitest.c
+++ b/test/sslapitest.c
@@ -8074,8 +8074,12 @@ static int test_cert_cb_int(int prot, int tst)
     else
         cert_cb_cnt = 0;
 
-    if (tst == 2)
+    if (tst == 2) {
         snictx = SSL_CTX_new(TLS_server_method());
+        if (!TEST_ptr(snictx))
+            goto end;
+    }
+
     SSL_CTX_set_cert_cb(sctx, cert_cb, snictx);
 
     if (!TEST_true(create_ssl_objects(sctx, cctx, &serverssl, &clientssl,


More information about the openssl-commits mailing list