summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2021-08-03 10:10:54 (GMT)
committerGitHub <noreply@github.com>2021-08-03 10:10:54 (GMT)
commit0b551db04a99a97abb1e44a071c688c3ca704b67 (patch)
tree0d0ac6fd4a5b3115e1035433882d72f6205c4345 /Python
parentc50a672eebb16cf778d9a3b22b72d506c3f54ced (diff)
downloadcpython-0b551db04a99a97abb1e44a071c688c3ca704b67.zip
cpython-0b551db04a99a97abb1e44a071c688c3ca704b67.tar.gz
cpython-0b551db04a99a97abb1e44a071c688c3ca704b67.tar.bz2
bpo-39091: Fix segfault when Exception constructor returns non-exception for gen.throw. (GH-17658) (GH-27573)
Co-authored-by: Benjamin Peterson <benjamin@python.org> (cherry picked from commit 83ca46b7784b7357d82ec47b33295e09ed7380cb) Co-authored-by: Noah <33094578+coolreader18@users.noreply.github.com>
Diffstat (limited to 'Python')
-rw-r--r--Python/errors.c20
1 files changed, 16 insertions, 4 deletions
diff --git a/Python/errors.c b/Python/errors.c
index 87af39d..2c020cd 100644
--- a/Python/errors.c
+++ b/Python/errors.c
@@ -85,17 +85,29 @@ _PyErr_GetTopmostException(PyThreadState *tstate)
}
static PyObject*
-_PyErr_CreateException(PyObject *exception, PyObject *value)
+_PyErr_CreateException(PyObject *exception_type, PyObject *value)
{
+ PyObject *exc;
+
if (value == NULL || value == Py_None) {
- return _PyObject_CallNoArg(exception);
+ exc = _PyObject_CallNoArg(exception_type);
}
else if (PyTuple_Check(value)) {
- return PyObject_Call(exception, value, NULL);
+ exc = PyObject_Call(exception_type, value, NULL);
}
else {
- return PyObject_CallOneArg(exception, value);
+ exc = PyObject_CallOneArg(exception_type, value);
+ }
+
+ if (exc != NULL && !PyExceptionInstance_Check(exc)) {
+ PyErr_Format(PyExc_TypeError,
+ "calling %R should have returned an instance of "
+ "BaseException, not %s",
+ exception_type, Py_TYPE(exc)->tp_name);
+ Py_CLEAR(exc);
}
+
+ return exc;
}
void