mirror of
https://github.com/python/cpython.git
synced 2025-12-31 04:23:37 +00:00
Remove extra self DECREF on ssl "no ciphers" error path. This doesn't come up in practice because nobody links against a broken OpenSSL library that provides nothing.
4 lines
302 B
ReStructuredText
4 lines
302 B
ReStructuredText
Fixed an unlikely early & extra ``Py_DECREF`` triggered crash in :mod:`ssl`
|
|
when creating a new ``_ssl._SSLContext`` if CPython was built implausibly such
|
|
that the default cipher list is empty **or** the SSL library it was linked
|
|
against reports a failure from its C ``SSL_CTX_set_cipher_list()`` API.
|