Memory leaks fix. It now looks like all memory leaks, at least around

building complete chains, are gone.
This commit is contained in:
Richard Levitte 2000-08-11 22:50:08 +00:00
parent 9ee1c838cb
commit 5ce42a7e68

View File

@ -426,6 +426,7 @@ int MAIN(int argc, char **argv)
} }
} }
if(!keyidlen) { if(!keyidlen) {
ucert = NULL;
BIO_printf(bio_err, "No certificate matches private key\n"); BIO_printf(bio_err, "No certificate matches private key\n");
goto export_end; goto export_end;
} }
@ -588,6 +589,7 @@ int MAIN(int argc, char **argv)
if (certs) sk_X509_pop_free(certs, X509_free); if (certs) sk_X509_pop_free(certs, X509_free);
if (safes) sk_PKCS7_pop_free(safes, PKCS7_free); if (safes) sk_PKCS7_pop_free(safes, PKCS7_free);
if (bags) sk_PKCS12_SAFEBAG_pop_free(bags, PKCS12_SAFEBAG_free); if (bags) sk_PKCS12_SAFEBAG_pop_free(bags, PKCS12_SAFEBAG_free);
if (ucert) X509_free(ucert);
#ifdef CRYPTO_MDEBUG #ifdef CRYPTO_MDEBUG
CRYPTO_pop_info(); CRYPTO_pop_info();