From: Rich Salz Date: Mon, 13 Jun 2016 01:55:46 +0000 (-0400) Subject: RT4560: Initialize variable to NULL X-Git-Tag: OpenSSL_1_0_2i~148 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=beb4c4518c25609ab2da75ab650d09ea7ae16223;p=oweals%2Fopenssl.git RT4560: Initialize variable to NULL Reviewed-by: Andy Polyakov --- 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)