From b3a639ed7d53ab49eae174c5605d0861c56489f3 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 5 Sep 2001 13:37:47 +0000 Subject: [PATCH] builtin_execfile(): initialize another local that the GCC on leroy found it necessary to warn about. --- Python/bltinmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 8fff44c279..55c71d39e6 100644 --- a/Python/bltinmodule.c +++ b/Python/bltinmodule.c @@ -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; -- 2.40.0