Fixed an unused variable warning introduced in GH-6800 (GH-6816)

This commit is contained in:
Alex Gaynor 2018-05-14 16:48:14 -04:00 committed by GitHub
parent 5e6312c39e
commit 00717a46a1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 1 deletions

View File

@ -882,7 +882,6 @@ newPySSLSocket(PySSLContext *sslctx, PySocketSockObject *sock,
{
PySSLSocket *self;
SSL_CTX *ctx = sslctx->ctx;
long mode;
self = PyObject_New(PySSLSocket, &PySSLSocket_Type);
if (self == NULL)