mirror of
https://github.com/openssl/openssl.git
synced 2024-11-27 05:21:51 +08:00
Fix jpaketest compilation error.
Reviewed-by: Rich Salz <rsalz@openssl.org>
This commit is contained in:
parent
74b31db68a
commit
7d57d4d040
@ -112,12 +112,14 @@ int main(int argc, char **argv)
|
|||||||
BIGNUM *g = NULL;
|
BIGNUM *g = NULL;
|
||||||
BIGNUM *q = NULL;
|
BIGNUM *q = NULL;
|
||||||
BIGNUM *secret = BN_new();
|
BIGNUM *secret = BN_new();
|
||||||
|
#ifndef OPENSSL_NO_CRYPTO_MDEBUG
|
||||||
BIO *bio_err;
|
BIO *bio_err;
|
||||||
|
|
||||||
bio_err = BIO_new_fp(stderr, BIO_NOCLOSE | BIO_FP_TEXT);
|
bio_err = BIO_new_fp(stderr, BIO_NOCLOSE | BIO_FP_TEXT);
|
||||||
|
|
||||||
CRYPTO_set_mem_debug_functions(1)
|
CRYPTO_set_mem_debug_functions(1)
|
||||||
CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
|
CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON);
|
||||||
|
#endif
|
||||||
|
|
||||||
ERR_load_crypto_strings();
|
ERR_load_crypto_strings();
|
||||||
|
|
||||||
@ -176,7 +178,9 @@ int main(int argc, char **argv)
|
|||||||
CRYPTO_cleanup_all_ex_data();
|
CRYPTO_cleanup_all_ex_data();
|
||||||
ERR_remove_thread_state(NULL);
|
ERR_remove_thread_state(NULL);
|
||||||
ERR_free_strings();
|
ERR_free_strings();
|
||||||
|
#ifndef OPENSSL_NO_CRYPTO_MDEBUG
|
||||||
CRYPTO_mem_leaks(bio_err);
|
CRYPTO_mem_leaks(bio_err);
|
||||||
|
#endif
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user