disable the confusing error created while searching for the certificate

This commit is contained in:
olszomal 2022-04-06 12:13:40 +02:00 committed by Michał Trojnara
parent 6a1a884f3c
commit 65d17836ab

View File

@ -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