diff options
author | Rich Salz <rsalz@openssl.org> | 2016-01-07 21:06:38 +0100 |
---|---|---|
committer | Rich Salz <rsalz@openssl.org> | 2016-01-07 21:14:18 +0100 |
commit | bbd86bf5424a611cb6b77a3a17fc522931c4dcb8 (patch) | |
tree | cc45d4fb29946c41879e563547a877a70b0c957a /test/clienthellotest.c | |
parent | Remove the old VMS linker option file creator for shlibs (diff) | |
download | openssl-bbd86bf5424a611cb6b77a3a17fc522931c4dcb8.tar.xz openssl-bbd86bf5424a611cb6b77a3a17fc522931c4dcb8.zip |
mem functions cleanup
Only two macros CRYPTO_MDEBUG and CRYPTO_MDEBUG_ABORT to control this.
If CRYPTO_MDEBUG is not set, #ifdef out the whole debug machinery.
(Thanks to Jakob Bohm for the suggestion!)
Make the "change wrapper functions" be the only paradigm.
Wrote documentation!
Format the 'set func' functions so their paramlists are legible.
Format some multi-line comments.
Remove ability to get/set the "memory debug" functions at runtme.
Remove MemCheck_* and CRYPTO_malloc_debug_init macros.
Add CRYPTO_mem_debug(int flag) function.
Add test/memleaktest.
Rename CRYPTO_malloc_init to OPENSSL_malloc_init; remove needless calls.
Reviewed-by: Richard Levitte <levitte@openssl.org>
Diffstat (limited to 'test/clienthellotest.c')
-rw-r--r-- | test/clienthellotest.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/clienthellotest.c b/test/clienthellotest.c index 318d6e84f8..289ca1e572 100644 --- a/test/clienthellotest.c +++ b/test/clienthellotest.c @@ -107,8 +107,7 @@ int main(int argc, char *argv[]) err = BIO_new_fp(stderr, BIO_NOCLOSE | BIO_FP_TEXT); - CRYPTO_malloc_debug_init(); - CRYPTO_set_mem_debug_options(V_CRYPTO_MDEBUG_ALL); + CRYPTO_set_mem_debug(1); CRYPTO_mem_ctrl(CRYPTO_MEM_CHECK_ON); /* @@ -212,7 +211,9 @@ int main(int argc, char *argv[]) ERR_remove_thread_state(NULL); EVP_cleanup(); CRYPTO_cleanup_all_ex_data(); +#ifdef CRYPTO_MDEBUG CRYPTO_mem_leaks(err); +#endif BIO_free(err); return testresult?0:1; |