[openssl] OpenSSL_1_1_1-stable update
shane.lontis at oracle.com
shane.lontis at oracle.com
Mon Sep 7 08:14:41 UTC 2020
The branch OpenSSL_1_1_1-stable has been updated
via 526cf60408e1a356ec712b6c88a88864fdbe73af (commit)
from 309e73dfe067b3b774ef6f57bf665f41373a81ca (commit)
- Log -----------------------------------------------------------------
commit 526cf60408e1a356ec712b6c88a88864fdbe73af
Author: luxinyou <luxinyou at uniontech.com>
Date: Mon Sep 7 18:06:45 2020 +1000
Fix memory leaks in conf_def.c
Fixes #12471
CLA: trivial
Reviewed-by: Matt Caswell <matt at openssl.org>
Reviewed-by: Paul Dale <paul.dale at oracle.com>
Reviewed-by: Shane Lontis <shane.lontis at oracle.com>
(Merged from https://github.com/openssl/openssl/pull/12533)
(cherry picked from commit 4348995b0d818203f37ffa51c9bdf4488cf24bad)
-----------------------------------------------------------------------
Summary of changes:
crypto/conf/conf_def.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/crypto/conf/conf_def.c b/crypto/conf/conf_def.c
index ca76fa3679..72669b15f9 100644
--- a/crypto/conf/conf_def.c
+++ b/crypto/conf/conf_def.c
@@ -376,11 +376,13 @@ static int def_load_bio(CONF *conf, BIO *in, long *line)
if (biosk == NULL) {
if ((biosk = sk_BIO_new_null()) == NULL) {
CONFerr(CONF_F_DEF_LOAD_BIO, ERR_R_MALLOC_FAILURE);
+ BIO_free(next);
goto err;
}
}
if (!sk_BIO_push(biosk, in)) {
CONFerr(CONF_F_DEF_LOAD_BIO, ERR_R_MALLOC_FAILURE);
+ BIO_free(next);
goto err;
}
/* continue with reading from the included BIO */
More information about the openssl-commits
mailing list