mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-04 17:00:11 -05:00
Simplify error handling in PKCS#7 certificate loading, CID 1639170
This commit is contained in:
parent
776e2ec7b6
commit
e7405fa839
@ -4269,7 +4269,7 @@ static int read_crypto_params(GLOBAL_OPTIONS *options)
|
|||||||
|
|
||||||
/* OpenSSL store API does not support PKCS#7 format */
|
/* OpenSSL store API does not support PKCS#7 format */
|
||||||
if (sk_X509_num(options->certs) == 0 && !read_pkcs7_certfile(options)) {
|
if (sk_X509_num(options->certs) == 0 && !read_pkcs7_certfile(options)) {
|
||||||
goto out;
|
return 0; /* FAILED */
|
||||||
}
|
}
|
||||||
out:
|
out:
|
||||||
return (options->pkey && sk_X509_num(options->certs) > 0) ? 1 : 0;
|
return (options->pkey && sk_X509_num(options->certs) > 0) ? 1 : 0;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user