summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Modules/socketmodule.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/Modules/socketmodule.c b/Modules/socketmodule.c
index ffe6b44..cb802e8 100644
--- a/Modules/socketmodule.c
+++ b/Modules/socketmodule.c
@@ -610,9 +610,11 @@ BUILD_FUNC_DEF_2(PySocketSock_close,PySocketSockObject *,s, PyObject *,args)
{
if (!PyArg_NoArgs(args))
return NULL;
- Py_BEGIN_ALLOW_THREADS
- (void) close(s->sock_fd);
- Py_END_ALLOW_THREADS
+ if (s->sock_fd != -1) {
+ Py_BEGIN_ALLOW_THREADS
+ (void) close(s->sock_fd);
+ Py_END_ALLOW_THREADS
+ }
s->sock_fd = -1;
Py_INCREF(Py_None);
return Py_None;