Silence 'arg may be used uninitialized in this function' warning from gcc.
diff --git a/Python/ceval.c b/Python/ceval.c
index 4facda4..d457fd5 100644
--- a/Python/ceval.c
+++ b/Python/ceval.c
@@ -450,7 +450,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);