Browse Source
Correct return type in Modules/_ssl.c::sslmodule_legacy (GH-23609)
pull/23612/head
Pablo Galindo
6 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
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 */ |
|
|
|
|