[Python-checkins] CVS: python/dist/src/Python compile.c,2.152,2.153

Jeremy Hylton jhylton@users.sourceforge.net
Mon, 29 Jan 2001 14:42:30 -0800


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

Modified Files:
	compile.c 
Log Message:
plug leak detected by Barry


Index: compile.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/compile.c,v
retrieving revision 2.152
retrieving revision 2.153
diff -C2 -r2.152 -r2.153
*** compile.c	2001/01/25 20:06:58	2.152
--- compile.c	2001/01/29 22:42:28	2.153
***************
*** 4235,4238 ****
--- 4235,4239 ----
  	Py_XDECREF(st->st_stack);
  	Py_XDECREF(st->st_cur_id);
+ 	Py_XDECREF(st->st_cur_name);
  	PyMem_Free((void *)st);
  }