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