From beb4c4518c25609ab2da75ab650d09ea7ae16223 Mon Sep 17 00:00:00 2001 From: Rich Salz Date: Sun, 12 Jun 2016 21:55:46 -0400 Subject: RT4560: Initialize variable to NULL Reviewed-by: Andy Polyakov --- 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 7d7be245b0..0e40f09f2f 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) -- cgit v1.2.3