mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-04 17:00:11 -05:00
Fix url resource leak, CID 1583652, 1583653
This commit is contained in:
parent
7a02d51a83
commit
9d152b8477
@ -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;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user