diff options
author | Viktor Dukhovni <openssl-users@dukhovni.org> | 2016-01-10 20:42:10 +0100 |
---|---|---|
committer | Dr. Stephen Henson <steve@openssl.org> | 2016-01-11 03:41:16 +0100 |
commit | c2e27310c790c0dd2f87dd420e65e0cca522ddb2 (patch) | |
tree | bda08e77fcbd3f993498ef5a4c7d9b551b0b47ed /test/ecdsatest.c | |
parent | Disable some algorithms by default (diff) | |
download | openssl-c2e27310c790c0dd2f87dd420e65e0cca522ddb2.tar.xz openssl-c2e27310c790c0dd2f87dd420e65e0cca522ddb2.zip |
Enable/disable crypto-mdebug just like other features
Also always abort() on leak failure.
Reviewed-by: Stephen Henson <steve@openssl.org>
Diffstat (limited to 'test/ecdsatest.c')
-rw-r--r-- | test/ecdsatest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/ecdsatest.c b/test/ecdsatest.c index 2e85d5e04b..5a27a38a9a 100644 --- a/test/ecdsatest.c +++ b/test/ecdsatest.c @@ -545,7 +545,7 @@ int main(void) CRYPTO_cleanup_all_ex_data(); ERR_remove_thread_state(NULL); ERR_free_strings(); -#ifdef CRYPTO_MDEBUG +#ifndef OPENSSL_NO_CRYPTO_MDEBUG CRYPTO_mem_leaks(out); #endif BIO_free(out); |