From: Dr. Stephen Henson Date: Thu, 11 Aug 2011 13:22:04 +0000 (+0000) Subject: Remove redundant assignment. X-Git-Tag: OpenSSL-fips-2_0-rc1~225 X-Git-Url: https://git.openssl.org/?p=openssl.git;a=commitdiff_plain;h=7f06921ecaba171508d643b4a6448827ac6389c7 Remove redundant assignment. --- diff --git a/fips/rand/fips_drbg_hash.c b/fips/rand/fips_drbg_hash.c index 51db7a41ee..481b356ec6 100644 --- a/fips/rand/fips_drbg_hash.c +++ b/fips/rand/fips_drbg_hash.c @@ -333,12 +333,10 @@ int fips_drbg_hash_init(DRBG_CTX *dctx) switch (dctx->type) { case NID_sha1: - md = EVP_sha1(); dctx->strength = 128; break; case NID_sha224: - md = EVP_sha224(); dctx->strength = 192; break;