Commit 4ed3f2a9 authored by Neal Norwitz's avatar Neal Norwitz

Reduce buffer size since we do not need 1k

parent c537d44c
......@@ -2492,7 +2492,7 @@ PyEval_EvalFrameEx(PyFrameObject *f, int throwflag)
else {
/* This check is expensive! */
if (PyErr_Occurred()) {
char buf[1024];
char buf[128];
sprintf(buf, "Stack unwind with exception "
"set and why=%d", why);
Py_FatalError(buf);
......
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