Mailing List Archive

python/dist/src/Python pystate.c,2.20.16.1,2.20.16.2
Update of /cvsroot/python/python/dist/src/Python
In directory usw-pr-cvs1:/tmp/cvs-serv17188

Modified Files:
Tag: release22-maint
pystate.c
Log Message:
Initialize tick_counter to 0. Found by Neal Norwitz.


Index: pystate.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Python/pystate.c,v
retrieving revision 2.20.16.1
retrieving revision 2.20.16.2
diff -C2 -d -r2.20.16.1 -r2.20.16.2
*** pystate.c 7 Oct 2002 09:47:21 -0000 2.20.16.1
--- pystate.c 8 Oct 2002 14:50:55 -0000 2.20.16.2
***************
*** 138,141 ****
--- 138,142 ----
tstate->tracing = 0;
tstate->use_tracing = 0;
+ tstate->tick_counter = 0;

tstate->dict = NULL;