[Python-checkins] r68691 - python/branches/py3k/Python/ceval.c
benjamin.peterson
python-checkins at python.org
Sun Jan 18 00:46:55 CET 2009
Author: benjamin.peterson
Date: Sun Jan 18 00:46:54 2009
New Revision: 68691
Log:
fix compiler warning
Modified:
python/branches/py3k/Python/ceval.c
Modified: python/branches/py3k/Python/ceval.c
==============================================================================
--- python/branches/py3k/Python/ceval.c (original)
+++ python/branches/py3k/Python/ceval.c Sun Jan 18 00:46:54 2009
@@ -441,7 +441,7 @@
for (i=0; i<NPENDINGCALLS; i++) {
int j;
int (*func)(void *);
- void *arg;
+ void *arg = NULL;
/* pop one item off the queue while holding the lock */
PyThread_acquire_lock(pending_lock, WAIT_LOCK);
More information about the Python-checkins
mailing list