Free up 'out' before exiting pkcs12 application.

Submitted by: Wu Zhigang <zhigangwu@yahoo.com>
This commit is contained in:
Dr. Stephen Henson 1999-05-27 13:10:59 +00:00
parent 5ece777974
commit bec9e0da7a

View File

@ -452,6 +452,7 @@ if (export_cert) {
PKCS12_free(p12);
ret = 0;
end:
BIO_free(out);
EXIT(ret);
}