summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2007-01-23 18:25:01 +0000
committerDr. Stephen Henson <steve@openssl.org>2007-01-23 18:25:01 +0000
commit510b3a14c665653a85bc3b21a59612167ef81649 (patch)
treeb45716886cf50cdda0a18f3e35b76ddd251bf817
parentc2c47c7f95979076aae962fa24757bc95fdda930 (diff)
Don't call OPENSSL_free() on sig, DSA_free() has already freed it.
-rw-r--r--fips-1.0/dsa/fips_dsa_selftest.c1
1 files changed, 0 insertions, 1 deletions
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;