The branch OpenSSL_1_1_1-stable has been updated
via a12b338f06442573a04932dbedaad3023113ee25 (commit)
from 25ca718150cef41e1c1d9c2c8c58e2b1e2cad3fa (commit)
- Log -----------------------------------------------------------------
commit a12b338f06442573a04932dbedaad3023113ee25
Author: Daniel DeFreez <[email protected]>
Date: Thu Feb 7 09:55:14 2019 -0800
Fix null pointer dereference in ssl_module_init
CLA: Trivial
Reviewed-by: Paul Yang <[email protected]>
Reviewed-by: Paul Dale <[email protected]>
(Merged from https://github.com/openssl/openssl/pull/8183)
(cherry picked from commit 758229f7d22775d7547e3b3b886b7f6a289c6897)
-----------------------------------------------------------------------
Summary of changes:
crypto/conf/conf_ssl.c | 2 ++
1 file changed, 2 insertions(+)
diff --git a/crypto/conf/conf_ssl.c b/crypto/conf/conf_ssl.c
index 024bdb4..8508d2e 100644
--- a/crypto/conf/conf_ssl.c
+++ b/crypto/conf/conf_ssl.c
@@ -78,6 +78,8 @@ static int ssl_module_init(CONF_IMODULE *md, const CONF *cnf)
cnt = sk_CONF_VALUE_num(cmd_lists);
ssl_module_free(md);
ssl_names = OPENSSL_zalloc(sizeof(*ssl_names) * cnt);
+ if (ssl_names == NULL)
+ goto err;
ssl_names_count = cnt;
for (i = 0; i < ssl_names_count; i++) {
struct ssl_conf_name_st *ssl_name = ssl_names + i;
_____
openssl-commits mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-commits