[openssl] OpenSSL_1_1_1-stable update

shane.lontis at oracle.com shane.lontis at oracle.com
Wed May 29 01:04:31 UTC 2019


The branch OpenSSL_1_1_1-stable has been updated
       via  23373fea190e7e2f4342d9656afdbcf909600445 (commit)
      from  2671490ddbde17de1f56229c35263598c10e408b (commit)


- Log -----------------------------------------------------------------
commit 23373fea190e7e2f4342d9656afdbcf909600445
Author: Dr. Matthias St. Pierre <Matthias.St.Pierre at ncp-e.com>
Date:   Tue May 28 14:29:59 2019 +0200

    crypto/conf: openssl_config_int() returns unitialized value
    
    openssl_config_int() returns the uninitialized variable `ret`
    when compiled with OPENSSL_SYS_UEFI.
    
    Fixes #9026
    
    Reviewed-by: Tim Hudson <tjh at openssl.org>
    Reviewed-by: Shane Lontis <shane.lontis at oracle.com>
    (Merged from https://github.com/openssl/openssl/pull/9029)
    
    (cherry picked from commit f4a96507fb880d5f5a707c138388cb8b5b1ba8c8)

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

Summary of changes:
 crypto/conf/conf_sap.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/crypto/conf/conf_sap.c b/crypto/conf/conf_sap.c
index 3805c42..82105de 100644
--- a/crypto/conf/conf_sap.c
+++ b/crypto/conf/conf_sap.c
@@ -42,7 +42,7 @@ void OPENSSL_config(const char *appname)
 
 int openssl_config_int(const OPENSSL_INIT_SETTINGS *settings)
 {
-    int ret;
+    int ret = 0;
     const char *filename;
     const char *appname;
     unsigned long flags;


More information about the openssl-commits mailing list