From: Dr. Stephen Henson Date: Tue, 23 Jan 2007 18:25:01 +0000 (+0000) Subject: Don't call OPENSSL_free() on sig, DSA_free() has already freed it. X-Git-Tag: OpenSSL_0_9_7m~17 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=510b3a14c665653a85bc3b21a59612167ef81649;p=oweals%2Fopenssl.git Don't call OPENSSL_free() on sig, DSA_free() has already freed it. --- diff --git a/fips-1.0/dsa/fips_dsa_selftest.c b/fips-1.0/dsa/fips_dsa_selftest.c index 91dcfc7326..49b3db9ea3 100644 --- a/fips-1.0/dsa/fips_dsa_selftest.c +++ b/fips-1.0/dsa/fips_dsa_selftest.c @@ -162,7 +162,6 @@ int FIPS_selftest_dsa() { i = DSA_do_verify(str1, 20, sig, dsa); DSA_SIG_free(sig); - OPENSSL_free(sig); } else i = 0;