summaryrefslogtreecommitdiffstats
path: root/Modules/_heapqmodule.c
diff options
context:
space:
mode:
authorRaymond Hettinger <python@rcn.com>2015-05-12 02:58:56 (GMT)
committerRaymond Hettinger <python@rcn.com>2015-05-12 02:58:56 (GMT)
commitb9db9e152f3325b075e59ef4fdecfd0b9ec4746c (patch)
tree94395cbc2ae10300d1aba7c735abec04e7756850 /Modules/_heapqmodule.c
parent1af2bf75a2f816eaaf8353eaab8b6dcfee0064c0 (diff)
downloadcpython-b9db9e152f3325b075e59ef4fdecfd0b9ec4746c.zip
cpython-b9db9e152f3325b075e59ef4fdecfd0b9ec4746c.tar.gz
cpython-b9db9e152f3325b075e59ef4fdecfd0b9ec4746c.tar.bz2
Defend against a mutation during comparison
Diffstat (limited to 'Modules/_heapqmodule.c')
-rw-r--r--Modules/_heapqmodule.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/Modules/_heapqmodule.c b/Modules/_heapqmodule.c
index 38bcdbe..04845f1 100644
--- a/Modules/_heapqmodule.c
+++ b/Modules/_heapqmodule.c
@@ -224,6 +224,11 @@ heappushpop(PyObject *self, PyObject *args)
return item;
}
+ if (PyList_GET_SIZE(heap) == 0) {
+ PyErr_SetString(PyExc_IndexError, "index out of range");
+ return NULL;
+ }
+
returnitem = PyList_GET_ITEM(heap, 0);
Py_INCREF(item);
PyList_SET_ITEM(heap, 0, item);