]> git.ipfire.org Git - thirdparty/openssl.git/commitdiff
Memory leak checks.
authorBodo Möller <bodo@openssl.org>
Fri, 25 Jun 1999 14:04:10 +0000 (14:04 +0000)
committerBodo Möller <bodo@openssl.org>
Fri, 25 Jun 1999 14:04:10 +0000 (14:04 +0000)
CHANGES
ssl/ssltest.c

diff --git a/CHANGES b/CHANGES
index 7975ac0a155a37903eea79e962c76fbf58358f73..70dcca1ac34400838dabcfcf381d950d7efea7bc 100644 (file)
--- a/CHANGES
+++ b/CHANGES
@@ -4,6 +4,11 @@
 
  Changes between 0.9.3a and 0.9.4
 
+  *) Fix memory leaks in DSA_do_sign and DSA_is_prime.
+     Also really enable memory leak checks in openssl.c and in some
+     test programs.
+     [Chad C. Mulligan, Bodo Moeller]
+
   *) Fix a bug in d2i_ASN1_INTEGER() and i2d_ASN1_INTEGER() which can mess
      up the length of negative integers. This has now been simplified to just
      store the length when it is first determined and use it later, rather
index 26483049115c277f3599f2aa5207e3bcecf80675..ad37d197962496aef2ede16468684c5f810fa5fa 100644 (file)
@@ -163,7 +163,7 @@ int main(int argc, char *argv[])
        bio_err=BIO_new_fp(stderr,BIO_NOCLOSE);
        bio_stdout=BIO_new_fp(stdout,BIO_NOCLOSE);
 
-       CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
+       CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ENABLE);
 
        argc--;
        argv++;