Kaydet (Commit) 245ce8db authored tarafından Neal Norwitz's avatar Neal Norwitz

i and j are initialized below when used. No need to do it twice

üst 909eb12c
......@@ -2766,7 +2766,7 @@ PyEval_EvalCodeEx(PyCodeObject *co, PyObject *globals, PyObject *locals,
/* Allocate and initialize storage for cell vars, and copy free
vars into frame. This isn't too efficient right now. */
if (PyTuple_GET_SIZE(co->co_cellvars)) {
int i = 0, j = 0, nargs, found;
int i, j, nargs, found;
char *cellname, *argname;
PyObject *c;
......
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