From: Tomas Mraz Date: Wed, 30 Jun 2021 14:11:17 +0000 (+0200) Subject: load_key_certs_crls: Avoid reporting any spurious errors X-Git-Tag: openssl-3.0.0-beta2~130 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d82d1d11d4dafc97875969329a5100242441744d;p=thirdparty%2Fopenssl.git load_key_certs_crls: Avoid reporting any spurious errors When there is other PEM data in between certs the OSSL_STORE_load returns NULL and reports error. Avoid printing that error unless there was nothing read at all. Fixes #15945 Reviewed-by: Paul Dale (Merged from https://github.com/openssl/openssl/pull/15949) --- diff --git a/apps/lib/apps.c b/apps/lib/apps.c index dfbc3ec5221..a767023197a 100644 --- a/apps/lib/apps.c +++ b/apps/lib/apps.c @@ -871,9 +871,6 @@ int load_key_certs_crls_suppress(const char *uri, int format, int maybe_stdin, OSSL_PARAM itp[2]; const OSSL_PARAM *params = NULL; - if (suppress_decode_errors) - ERR_set_mark(); - if (ppkey != NULL) { *ppkey = NULL; cnt_expectations++; @@ -971,10 +968,6 @@ int load_key_certs_crls_suppress(const char *uri, int format, int maybe_stdin, * certificate in it. We just retry until eof. */ if (info == NULL) { - if (OSSL_STORE_error(ctx)) { - ERR_print_errors(bio_err); - ERR_clear_error(); - } continue; } @@ -1078,8 +1071,9 @@ int load_key_certs_crls_suppress(const char *uri, int format, int maybe_stdin, BIO_printf(bio_err, "\n"); ERR_print_errors(bio_err); } - if (suppress_decode_errors) - ERR_pop_to_mark(); + if (suppress_decode_errors || failed == NULL) + /* clear any spurious errors */ + ERR_clear_error(); return failed == NULL; }