[openssl] OpenSSL_1_1_1-stable update

tomas at openssl.org tomas at openssl.org
Tue Mar 30 16:53:41 UTC 2021


The branch OpenSSL_1_1_1-stable has been updated
       via  fd988967bb14ce49b01c399b5d2c466852c105e4 (commit)
      from  122e5f7c010859f0b2984d553fa45cd1f18a6fc4 (commit)


- Log -----------------------------------------------------------------
commit fd988967bb14ce49b01c399b5d2c466852c105e4
Author: Nan Xiao <nan at chinadtrace.org>
Date:   Mon Mar 29 12:24:08 2021 +0800

    Fix BIO_new_ssl_connect() to not leak memory
    
    CLA: trivial
    
    Reviewed-by: Paul Dale <pauli at openssl.org>
    Reviewed-by: Tomas Mraz <tomas at openssl.org>
    (Merged from https://github.com/openssl/openssl/pull/14719)
    
    (cherry picked from commit 7947a1eb13c221bbc034796bd394ba00b0e2387d)

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

Summary of changes:
 ssl/bio_ssl.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/ssl/bio_ssl.c b/ssl/bio_ssl.c
index 53129bfb88..75c78b9a68 100644
--- a/ssl/bio_ssl.c
+++ b/ssl/bio_ssl.c
@@ -451,6 +451,7 @@ BIO *BIO_new_ssl_connect(SSL_CTX *ctx)
         goto err;
     return ret;
  err:
+    BIO_free(ssl);
     BIO_free(con);
 #endif
     return NULL;


More information about the openssl-commits mailing list