Fix jpaketest compilation error.
authorDr. Stephen Henson <steve@openssl.org>
Mon, 11 Jan 2016 17:11:24 +0000 (17:11 +0000)
committerDr. Stephen Henson <steve@openssl.org>
Mon, 11 Jan 2016 17:28:14 +0000 (17:28 +0000)
Reviewed-by: Rich Salz <rsalz@openssl.org>
test/jpaketest.c

index 2771e511adfc95be32e799be4c90a05085f69f0c..1c9cf24909d238b723b5ff6ca1e8e8cebaab46ea 100644 (file)
@@ -112,12 +112,14 @@ int main(int argc, char **argv)
     BIGNUM *g = NULL;
     BIGNUM *q = NULL;
     BIGNUM *secret = BN_new();
+#ifndef OPENSSL_NO_CRYPTO_MDEBUG
     BIO *bio_err;
 
     bio_err = BIO_new_fp(stderr, BIO_NOCLOSE | BIO_FP_TEXT);
 
     CRYPTO_set_mem_debug_functions(1)
     CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
+#endif
 
     ERR_load_crypto_strings();
 
@@ -176,7 +178,9 @@ int main(int argc, char **argv)
     CRYPTO_cleanup_all_ex_data();
     ERR_remove_thread_state(NULL);
     ERR_free_strings();
+#ifndef OPENSSL_NO_CRYPTO_MDEBUG
     CRYPTO_mem_leaks(bio_err);
+#endif
 
     return 0;
 }