[Python-checkins] CVS: python/dist/src/Python exceptions.c,1.24.2.1,1.24.2.2

Guido van Rossum gvanrossum@users.sourceforge.net
Thu, 28 Jun 2001 09:23:04 -0700


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

Modified Files:
      Tag: descr-branch
	exceptions.c 
Log Message:
_PyExc_Init(): add an unreachable return after the Py_FatalError()
call so gcc won't warn about uninitialized variables.


Index: exceptions.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/exceptions.c,v
retrieving revision 1.24.2.1
retrieving revision 1.24.2.2
diff -C2 -r1.24.2.1 -r1.24.2.2
*** exceptions.c	2001/06/28 16:15:38	1.24.2.1
--- exceptions.c	2001/06/28 16:23:02	1.24.2.2
***************
*** 1085,1088 ****
--- 1085,1089 ----
   err:
  	Py_FatalError("exceptions bootstrapping error.");
+ 	return;
      }