Fix url resource leak, CID 1583652, 1583653

This commit is contained in:
olszomal 2024-02-15 13:31:05 +01:00 committed by Michał Trojnara
parent 7a02d51a83
commit 9d152b8477

View File

@ -1799,8 +1799,8 @@ static int verify_timestamp(FILE_FORMAT_CTX *ctx, PKCS7 *p7, CMS_ContentInfo *ti
} else { } else {
printf("TSA's CRL distribution point: %s\n", url); printf("TSA's CRL distribution point: %s\n", url);
crl = x509_crl_get(url); crl = x509_crl_get(url);
OPENSSL_free(url);
} }
OPENSSL_free(url);
if (!crl && !ctx->options->tsa_crlfile) { if (!crl && !ctx->options->tsa_crlfile) {
printf("Use the \"-TSA-CRLfile\" option to add one or more Time-Stamp Authority CRLs in PEM format.\n"); printf("Use the \"-TSA-CRLfile\" option to add one or more Time-Stamp Authority CRLs in PEM format.\n");
} }
@ -1924,8 +1924,8 @@ static int verify_authenticode(FILE_FORMAT_CTX *ctx, PKCS7 *p7, time_t time, X50
} else { } else {
printf("CRL distribution point: %s\n", url); printf("CRL distribution point: %s\n", url);
crl = x509_crl_get(url); crl = x509_crl_get(url);
OPENSSL_free(url);
} }
OPENSSL_free(url);
if (!crl && !ctx->options->crlfile) { if (!crl && !ctx->options->crlfile) {
printf("Use the \"-CRLfile\" option to add one or more CRLs in PEM format.\n"); printf("Use the \"-CRLfile\" option to add one or more CRLs in PEM format.\n");
goto out; goto out;