diff options
author | Guido van Rossum <guido@python.org> | 2001-09-05 13:37:47 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 2001-09-05 13:37:47 (GMT) |
commit | b3a639ed7d53ab49eae174c5605d0861c56489f3 (patch) | |
tree | 82c0748c250d739a9bfa8ed38071be10151c372b | |
parent | c010c17f4b50a71de056c1c05e200b29047c84d8 (diff) | |
download | cpython-b3a639ed7d53ab49eae174c5605d0861c56489f3.zip cpython-b3a639ed7d53ab49eae174c5605d0861c56489f3.tar.gz cpython-b3a639ed7d53ab49eae174c5605d0861c56489f3.tar.bz2 |
builtin_execfile(): initialize another local that the GCC on leroy
found it necessary to warn about.
-rw-r--r-- | Python/bltinmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/bltinmodule.c b/Python/bltinmodule.c index 8fff44c..55c71d3 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; |