From: Bodo Möller Date: Mon, 11 Aug 2003 18:56:22 +0000 (+0000) Subject: make sure no error is left in the queue that is intentionally ignored X-Git-Tag: BEN_FIPS_TEST_1~38^2~7 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=643ecd2ed6fa6f91d674429fc9fca6e2405946de;p=oweals%2Fopenssl.git make sure no error is left in the queue that is intentionally ignored --- diff --git a/ssl/ssl_rsa.c b/ssl/ssl_rsa.c index 03828b6632..330390519b 100644 --- a/ssl/ssl_rsa.c +++ b/ssl/ssl_rsa.c @@ -207,7 +207,7 @@ static int ssl_set_pkey(CERT *c, EVP_PKEY *pkey) ok=1; else #endif - if (!X509_check_private_key(c->pkeys[i].x509,pkey)) + if (!X509_check_private_key(c->pkeys[i].x509,pkey)) { if ((i == SSL_PKEY_DH_RSA) || (i == SSL_PKEY_DH_DSA)) { @@ -241,6 +241,8 @@ static int ssl_set_pkey(CERT *c, EVP_PKEY *pkey) return(0); } + ERR_clear_error(); /* make sure no error from X509_check_private_key() + * is left if we have chosen to ignore it */ if (c->pkeys[i].privatekey != NULL) EVP_PKEY_free(c->pkeys[i].privatekey); CRYPTO_add(&pkey->references,1,CRYPTO_LOCK_EVP_PKEY);