[Python-checkins] CVS: python/dist/src/Python errors.c,2.62,2.62.4.1

Anthony Baxter anthonybaxter@users.sourceforge.net
Tue, 20 Nov 2001 21:41:05 -0800


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

Modified Files:
      Tag: release21-maint
	errors.c 
Log Message:
backport of tim's 2.66:
. SF bug [#467265] Compile errors on SuSe Linux on IBM/s390.
  - errors.c, PyErr_Format:  add a va_end() to balance the va_start().



Index: errors.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/errors.c,v
retrieving revision 2.62
retrieving revision 2.62.4.1
diff -C2 -d -r2.62 -r2.62.4.1
*** errors.c	2001/03/06 12:12:02	2.62
--- errors.c	2001/11/21 05:41:03	2.62.4.1
***************
*** 510,514 ****
  	PyErr_SetObject(exception, string);
  	Py_XDECREF(string);
! 	
  	return NULL;
  }
--- 510,514 ----
  	PyErr_SetObject(exception, string);
  	Py_XDECREF(string);
! 	va_end(vargs);
  	return NULL;
  }