the previous patch wasn't -- there was a path through the code that
bypassed all initializations. Thanks to Just for reporting the bug!
register PyObject *t;
register PyFrameObject *f; /* Current frame */
register PyObject **fastlocals;
- PyObject *retval; /* Return value */
+ PyObject *retval = NULL; /* Return value */
PyThreadState *tstate = PyThreadState_Get();
unsigned char *first_instr;
#ifdef LLTRACE
if (tstate->sys_profilefunc)
call_exc_trace(&tstate->sys_profilefunc,
(PyObject**)0, f);
-}
+ }
/* For the rest, treat WHY_RERAISE as WHY_EXCEPTION */