summaryrefslogtreecommitdiffstats
path: root/Objects
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2015-04-26 16:46:40 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2015-04-26 16:46:40 (GMT)
commit7403e91630456ae2a495ac7621c2152d9a270400 (patch)
tree09d5f347a8b03dc552e7d40d1290943fa3810c37 /Objects
parent8c99a6d6049b87b328073189719d9cc4bfc68b82 (diff)
downloadcpython-7403e91630456ae2a495ac7621c2152d9a270400.zip
cpython-7403e91630456ae2a495ac7621c2152d9a270400.tar.gz
cpython-7403e91630456ae2a495ac7621c2152d9a270400.tar.bz2
Issue #23996: Avoid a crash when a delegated generator raises an unnormalized StopIteration exception. Patch by Stefan Behnel.
Diffstat (limited to 'Objects')
-rw-r--r--Objects/genobject.c27
1 files changed, 22 insertions, 5 deletions
diff --git a/Objects/genobject.c b/Objects/genobject.c
index 08d30bf..f125847 100644
--- a/Objects/genobject.c
+++ b/Objects/genobject.c
@@ -396,13 +396,30 @@ _PyGen_FetchStopIterationValue(PyObject **pvalue) {
if (PyErr_ExceptionMatches(PyExc_StopIteration)) {
PyErr_Fetch(&et, &ev, &tb);
- Py_XDECREF(et);
- Py_XDECREF(tb);
if (ev) {
- value = ((PyStopIterationObject *)ev)->value;
- Py_INCREF(value);
- Py_DECREF(ev);
+ /* exception will usually be normalised already */
+ if (Py_TYPE(ev) == (PyTypeObject *) et
+ || PyObject_IsInstance(ev, PyExc_StopIteration)) {
+ value = ((PyStopIterationObject *)ev)->value;
+ Py_INCREF(value);
+ Py_DECREF(ev);
+ } else if (et == PyExc_StopIteration) {
+ /* avoid normalisation and take ev as value */
+ value = ev;
+ } else {
+ /* normalisation required */
+ PyErr_NormalizeException(&et, &ev, &tb);
+ if (!PyObject_IsInstance(ev, PyExc_StopIteration)) {
+ PyErr_Restore(et, ev, tb);
+ return -1;
+ }
+ value = ((PyStopIterationObject *)ev)->value;
+ Py_INCREF(value);
+ Py_DECREF(ev);
+ }
}
+ Py_XDECREF(et);
+ Py_XDECREF(tb);
} else if (PyErr_Occurred()) {
return -1;
}