projects
/
openssl.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
CRYPTO_mem_leaks should ignore it's BIO argument.
[openssl.git]
/
apps
/
openssl.c
diff --git
a/apps/openssl.c
b/apps/openssl.c
index
b42d031
..
786f5d3
100644
(file)
--- a/
apps/openssl.c
+++ b/
apps/openssl.c
@@
-527,8
+527,7
@@
int main(int argc, char *argv[])
BIO_free(bio_in);
BIO_free_all(bio_out);
apps_shutdown();
- /*CRYPTO_mem_leaks(bio_err);
- */
+ CRYPTO_mem_leaks(bio_err);
BIO_free(bio_err);
return (ret);
}