projects
/
openssl.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
If memory debugging enabled return error on leaks.
[openssl.git]
/
test
/
exptest.c
diff --git
a/test/exptest.c
b/test/exptest.c
index 0acdacced73caab727f8a8580360f21aacf0f6a2..5cd79e2970b9518daa60fb92b2e960213088d811 100644
(file)
--- a/
test/exptest.c
+++ b/
test/exptest.c
@@
-300,7
+300,8
@@
int main(int argc, char *argv[])
BN_CTX_free(ctx);
ERR_remove_thread_state(NULL);
#ifndef OPENSSL_NO_CRYPTO_MDEBUG
- CRYPTO_mem_leaks(out);
+ if (CRYPTO_mem_leaks(out) <= 0)
+ goto err;
#endif
BIO_free(out);
printf("\n");