mirror of
https://github.com/mtrojnar/osslsigncode.git
synced 2025-04-04 17:00:11 -05:00
disable the confusing error created while searching for the certificate
This commit is contained in:
parent
6a1a884f3c
commit
65d17836ab
@ -4645,6 +4645,7 @@ static STACK_OF(X509) *PEM_read_certs_with_pass(BIO *bin, char *certpass)
|
||||
sk_X509_push(certs, x509);
|
||||
x509 = PEM_read_bio_X509(bin, NULL, NULL, certpass);
|
||||
}
|
||||
ERR_clear_error();
|
||||
if (!sk_X509_num(certs)) {
|
||||
sk_X509_free(certs);
|
||||
return NULL;
|
||||
@ -4660,7 +4661,6 @@ static STACK_OF(X509) *PEM_read_certs(BIO *bin, char *certpass)
|
||||
return certs;
|
||||
}
|
||||
|
||||
|
||||
static off_t get_file_size(const char *infile)
|
||||
{
|
||||
int ret;
|
||||
@ -5241,6 +5241,7 @@ static int read_crypto_params(GLOBAL_OPTIONS *options, CRYPTO_PARAMS *cparams)
|
||||
/* PKCS11 engine and module support */
|
||||
} else if ((options->p11engine) || (options->p11module)) {
|
||||
ENGINE *engine;
|
||||
|
||||
if (options->p11engine)
|
||||
engine = dynamic_engine(options);
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user