[Python-checkins] CVS: python/dist/src/Python bltinmodule.c,2.234,2.235

Guido van Rossum gvanrossum@users.sourceforge.net
Wed, 05 Sep 2001 06:37:50 -0700


Update of /cvsroot/python/python/dist/src/Python
In directory usw-pr-cvs1:/tmp/cvs-serv26905

Modified Files:
	bltinmodule.c 
Log Message:
builtin_execfile(): initialize another local that the GCC on leroy
found it necessary to warn about.


Index: bltinmodule.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/bltinmodule.c,v
retrieving revision 2.234
retrieving revision 2.235
diff -C2 -d -r2.234 -r2.235
*** bltinmodule.c	2001/09/04 22:08:56	2.234
--- bltinmodule.c	2001/09/05 13:37:47	2.235
***************
*** 534,538 ****
  	PyObject *globals = Py_None, *locals = Py_None;
  	PyObject *res;
! 	FILE* fp;
  	PyCompilerFlags cf;
  	int exists;
--- 534,538 ----
  	PyObject *globals = Py_None, *locals = Py_None;
  	PyObject *res;
! 	FILE* fp = NULL;
  	PyCompilerFlags cf;
  	int exists;