summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHeikki Linnakangas <heikki.linnakangas@iki.fi>2016-10-07 12:53:47 +0300
committerHeikki Linnakangas <heikki.linnakangas@iki.fi>2016-10-07 12:53:47 +0300
commitb5afc6f678616900ecfd69d6ebaa90533b231c65 (patch)
treeff04c6ddc60963ff2d954d1618ba1203d57cb20d /src
parentfde92dc226ebc355cd93ef443d116fc168b06968 (diff)
Clear OpenSSL error queue after failed X509_STORE_load_locations() call.
Leaving the error in the error queue used to be harmless, because the X509_STORE_load_locations() call used to be the last step in initialize_SSL(), and we would clear the queue before the next SSL_connect() call. But previous commit moved things around. The symptom was that if a CRL file was not found, and one of the subsequent initialization steps, like loading the client certificate or private key, failed, we would incorrectly print the "no such file" error message from the earlier X509_STORE_load_locations() call as the reason. Backpatch to all supported versions, like the previous patch.
Diffstat (limited to 'src')
-rw-r--r--src/interfaces/libpq/fe-secure.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/interfaces/libpq/fe-secure.c b/src/interfaces/libpq/fe-secure.c
index 5c59c0688ef..9e7ae472ed7 100644
--- a/src/interfaces/libpq/fe-secure.c
+++ b/src/interfaces/libpq/fe-secure.c
@@ -1120,6 +1120,7 @@ initialize_SSL(PGconn *conn)
#endif
}
/* if not found, silently ignore; we do not require CRL */
+ ERR_clear_error();
}
have_rootcert = true;
}