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

(cherry picked from commit 00717a46a1)

Co-authored-by: Alex Gaynor <alex.gaynor@gmail.com>
This commit is contained in:
Miss Islington (bot) 2018-05-14 16:42:30 -07:00 committed by GitHub
parent 5195039bb5
commit 3b26e8cab7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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)