From d11a9e1f79c92c55ac568e5c8fd26193eedd919a Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Tue, 15 May 2018 20:02:22 -0400 Subject: [PATCH] Remove an unneeded call into OpenSSL --- Modules/_ssl.c | 1 - 1 file changed, 1 deletion(-) diff --git a/Modules/_ssl.c b/Modules/_ssl.c index bf379f01a1d2bf5..2bce4816d26fe78 100644 --- a/Modules/_ssl.c +++ b/Modules/_ssl.c @@ -901,7 +901,6 @@ newPySSLSocket(PySSLContext *sslctx, PySocketSockObject *sock, #endif /* Make sure the SSL error state is initialized */ - (void) ERR_get_state(); ERR_clear_error(); PySSL_BEGIN_ALLOW_THREADS