Silence 'arg may be used uninitialized in this function' warning from gcc.

This commit is contained in:
Mark Dickinson 2009-02-08 17:33:11 +00:00
parent b8e17f7370
commit 9e58a37252

View file

@ -450,7 +450,7 @@ Py_MakePendingCalls(void)
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);