From: Bodo Möller Date: Mon, 11 Aug 2003 18:56:19 +0000 (+0000) Subject: make sure no error is left in the queue that is intentionally ignored X-Git-Tag: OpenSSL_0_9_7c~26 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=0e9edc98d4ee365c6e1363c4a6c1e419b9f386fa;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);