summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorluxinyou <luxinyou@uniontech.com>2020-09-07 18:06:45 +1000
committerShane Lontis <shane.lontis@oracle.com>2020-09-07 18:13:01 +1000
commit526cf60408e1a356ec712b6c88a88864fdbe73af (patch)
treed1bad70ace6c42df1f439f93c1c834dc18923f2e
parent309e73dfe067b3b774ef6f57bf665f41373a81ca (diff)
Fix memory leaks in conf_def.c
Fixes #12471 CLA: trivial Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Paul Dale <paul.dale@oracle.com> Reviewed-by: Shane Lontis <shane.lontis@oracle.com> (Merged from https://github.com/openssl/openssl/pull/12533) (cherry picked from commit 4348995b0d818203f37ffa51c9bdf4488cf24bad)
-rw-r--r--crypto/conf/conf_def.c2
1 files changed, 2 insertions, 0 deletions
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 */