pgsql: Clear OpenSSL error queue after failed X509_STORE_load_locations

Поиск
Список
Период
Сортировка
От Heikki Linnakangas
Тема pgsql: Clear OpenSSL error queue after failed X509_STORE_load_locations
Дата
Msg-id E1bsRrj-00037J-US@gemulon.postgresql.org
обсуждение исходный текст
Список pgsql-committers
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
------
REL9_3_STABLE

Details
-------
http://git.postgresql.org/pg/commitdiff/b5afc6f678616900ecfd69d6ebaa90533b231c65

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


В списке pgsql-committers по дате отправления:

Предыдущее
От: Heikki Linnakangas
Дата:
Сообщение: pgsql: Don't share SSL_CTX between libpq connections.
Следующее
От: Heikki Linnakangas
Дата:
Сообщение: pgsql: Clear OpenSSL error queue after failed X509_STORE_load_locations