[openssl-commits] [openssl] OpenSSL_1_0_2-stable update

Rich Salz rsalz at openssl.org
Mon Jun 13 13:35:36 UTC 2016


The branch OpenSSL_1_0_2-stable has been updated
       via  beb4c4518c25609ab2da75ab650d09ea7ae16223 (commit)
      from  ccd582c2f1bd3bea1423a0205692dc2e358ace51 (commit)


- Log -----------------------------------------------------------------
commit beb4c4518c25609ab2da75ab650d09ea7ae16223
Author: Rich Salz <rsalz at openssl.org>
Date:   Sun Jun 12 21:55:46 2016 -0400

    RT4560: Initialize variable to NULL
    
    Reviewed-by: Andy Polyakov <appro at openssl.org>

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

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

diff --git a/crypto/evp/evp_enc.c b/crypto/evp/evp_enc.c
index 7d7be24..0e40f09 100644
--- a/crypto/evp/evp_enc.c
+++ b/crypto/evp/evp_enc.c
@@ -170,7 +170,7 @@ int EVP_CipherInit_ex(EVP_CIPHER_CTX *ctx, const EVP_CIPHER *cipher,
 
 #ifdef OPENSSL_FIPS
         if (FIPS_mode()) {
-            const EVP_CIPHER *fcipher;
+            const EVP_CIPHER *fcipher = NULL;
             if (cipher)
                 fcipher = evp_get_fips_cipher(cipher);
             if (fcipher)


More information about the openssl-commits mailing list