Memory leaks fix. It now looks like all memory leaks, at least around
authorRichard Levitte <levitte@openssl.org>
Fri, 11 Aug 2000 22:50:08 +0000 (22:50 +0000)
committerRichard Levitte <levitte@openssl.org>
Fri, 11 Aug 2000 22:50:08 +0000 (22:50 +0000)
building complete chains, are gone.

apps/pkcs12.c

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