bpo-39272: Remove dead assignment from _ssl__SSLContext_load_verify_locations_impl (GH-17916)
This commit is contained in:
parent
1a183faccb
commit
a1c1be24cb
|
@ -4223,7 +4223,6 @@ _ssl__SSLContext_load_verify_locations_impl(PySSLContext *self,
|
||||||
r = SSL_CTX_load_verify_locations(self->ctx, cafile_buf, capath_buf);
|
r = SSL_CTX_load_verify_locations(self->ctx, cafile_buf, capath_buf);
|
||||||
PySSL_END_ALLOW_THREADS
|
PySSL_END_ALLOW_THREADS
|
||||||
if (r != 1) {
|
if (r != 1) {
|
||||||
ok = 0;
|
|
||||||
if (errno != 0) {
|
if (errno != 0) {
|
||||||
ERR_clear_error();
|
ERR_clear_error();
|
||||||
PyErr_SetFromErrno(PyExc_OSError);
|
PyErr_SetFromErrno(PyExc_OSError);
|
||||||
|
|
Loading…
Reference in New Issue