Simplify error handling in PKCS#7 certificate loading, CID 1639170

This commit is contained in:
olszomal 2025-03-31 10:33:41 +02:00 committed by Michał Trojnara
parent 776e2ec7b6
commit e7405fa839

View File

@ -4269,7 +4269,7 @@ static int read_crypto_params(GLOBAL_OPTIONS *options)
/* OpenSSL store API does not support PKCS#7 format */
if (sk_X509_num(options->certs) == 0 && !read_pkcs7_certfile(options)) {
goto out;
return 0; /* FAILED */
}
out:
return (options->pkey && sk_X509_num(options->certs) > 0) ? 1 : 0;