projects
/
oweals
/
openssl.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5ece777
)
Free up 'out' before exiting pkcs12 application.
author
Dr. Stephen Henson
<steve@openssl.org>
Thu, 27 May 1999 13:10:59 +0000
(13:10 +0000)
committer
Dr. Stephen Henson
<steve@openssl.org>
Thu, 27 May 1999 13:10:59 +0000
(13:10 +0000)
Submitted by: Wu Zhigang <zhigangwu@yahoo.com>
apps/pkcs12.c
patch
|
blob
|
history
diff --git
a/apps/pkcs12.c
b/apps/pkcs12.c
index 13544ddef8afcaa0ed75b3fb75de7612fb706e56..88816c90d2f9805386f0406cbf284e1701285dff 100644
(file)
--- a/
apps/pkcs12.c
+++ b/
apps/pkcs12.c
@@
-452,6
+452,7
@@
if (export_cert) {
PKCS12_free(p12);
ret = 0;
end:
+ BIO_free(out);
EXIT(ret);
}