summaryrefslogtreecommitdiffstats
path: root/crypto/mem.c
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-04-12 13:01:40 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-04-12 13:01:40 +0000
commit364ce53cef64bc00176f864db444a086fc4f6e4f (patch)
tree83582bb74cf852496117104f84973ea876f07a68 /crypto/mem.c
parent622335268320d931cae63b625019bdf063efc4d8 (diff)
No need to disable leak checking for FIPS builds now we use internal
memory callbacks.
Diffstat (limited to 'crypto/mem.c')
-rw-r--r--crypto/mem.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/mem.c b/crypto/mem.c
index 7bd29d6766..73d68b5f0b 100644
--- a/crypto/mem.c
+++ b/crypto/mem.c
@@ -101,7 +101,7 @@ static void (*free_locked_func)(void *) = free;
/* may be changed as long as 'allow_customize_debug' is set */
/* XXX use correct function pointer types */
-#if defined(CRYPTO_MDEBUG) && !defined(OPENSSL_FIPSCANISTER)
+#if defined(CRYPTO_MDEBUG)
/* use default functions from mem_dbg.c */
static void (*malloc_debug_func)(void *,int,const char *,int,int)
= CRYPTO_dbg_malloc;