Commit b3a639ed authored by Guido van Rossum's avatar Guido van Rossum

builtin_execfile(): initialize another local that the GCC on leroy

found it necessary to warn about.
parent c010c17f
......@@ -533,7 +533,7 @@ builtin_execfile(PyObject *self, PyObject *args)
char *filename;
PyObject *globals = Py_None, *locals = Py_None;
PyObject *res;
FILE* fp;
FILE* fp = NULL;
PyCompilerFlags cf;
int exists;
struct stat s;
......
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