Обсуждение: pgsql: Clear OpenSSL error queue after failed X509_STORE_load_locations

Поиск
Список
Период
Сортировка

pgsql: Clear OpenSSL error queue after failed X509_STORE_load_locations

От
Heikki Linnakangas
Дата:
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.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/275bf98601b230e530003ef20193d095b9309c24

Modified Files
--------------
src/interfaces/libpq/fe-secure-openssl.c | 1 +
1 file changed, 1 insertion(+)