summaryrefslogtreecommitdiffstats
path: root/Modules/_multiprocessing/connection.h
diff options
context:
space:
mode:
authorJesse Noller <jnoller@gmail.com>2009-01-19 15:12:22 (GMT)
committerJesse Noller <jnoller@gmail.com>2009-01-19 15:12:22 (GMT)
commit9a5b2ad38d605206f05a52fe32868d3f839e8a86 (patch)
tree8dd72269c71a0e279ebc7b3d71f879ab89dd05c5 /Modules/_multiprocessing/connection.h
parent273c1d9a8ba2d7dbd03afec7e7d6aadcb884e758 (diff)
downloadcpython-9a5b2ad38d605206f05a52fe32868d3f839e8a86.zip
cpython-9a5b2ad38d605206f05a52fe32868d3f839e8a86.tar.gz
cpython-9a5b2ad38d605206f05a52fe32868d3f839e8a86.tar.bz2
Resolve issue 3321: (segfault) _multiprocessing.Connection() doesn't check handle
Diffstat (limited to 'Modules/_multiprocessing/connection.h')
-rw-r--r--Modules/_multiprocessing/connection.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/_multiprocessing/connection.h b/Modules/_multiprocessing/connection.h
index 155b61b..458d1d3 100644
--- a/Modules/_multiprocessing/connection.h
+++ b/Modules/_multiprocessing/connection.h
@@ -354,7 +354,7 @@ connection_poll(ConnectionObject *self, PyObject *args)
}
Py_BEGIN_ALLOW_THREADS
- res = conn_poll(self, timeout);
+ res = conn_poll(self, timeout, _save);
Py_END_ALLOW_THREADS
switch (res) {