Commit ea1cf870 authored by Xiang Zhang's avatar Xiang Zhang

Issue #29044: Fix a use-after-free in string '%c' formatter.

parent c67983b8
...@@ -14213,11 +14213,12 @@ formatchar(PyObject *v) ...@@ -14213,11 +14213,12 @@ formatchar(PyObject *v)
if (iobj == NULL) { if (iobj == NULL) {
goto onError; goto onError;
} }
v = iobj; x = PyLong_AsLong(iobj);
Py_DECREF(iobj); Py_DECREF(iobj);
} }
/* Integer input truncated to a character */ else {
x = PyLong_AsLong(v); x = PyLong_AsLong(v);
}
if (x == -1 && PyErr_Occurred()) if (x == -1 && PyErr_Occurred())
goto onError; goto onError;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment