Browse Source

Correct return type in Modules/_ssl.c::sslmodule_legacy (GH-23609)

pull/23612/head
Pablo Galindo 6 years ago
committed by GitHub
parent
commit
93a0ef7647
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Modules/_ssl.c

2
Modules/_ssl.c

@ -6416,7 +6416,7 @@ sslmodule_legacy(PyObject *module)
#ifdef HAVE_OPENSSL_CRYPTO_LOCK
/* note that this will start threading if not already started */
if (!_setup_ssl_threads()) {
return NULL;
return 0;
}
#elif OPENSSL_VERSION_1_1
/* OpenSSL 1.1.0 builtin thread support is enabled */

Loading…
Cancel
Save