]> granicus.if.org Git - python/commitdiff
fix compiler warning
authorBenjamin Peterson <benjamin@python.org>
Sat, 17 Jan 2009 23:46:54 +0000 (23:46 +0000)
committerBenjamin Peterson <benjamin@python.org>
Sat, 17 Jan 2009 23:46:54 +0000 (23:46 +0000)
Python/ceval.c

index 89c3c2925ae841d204c4941bdc59704c20bb0f53..fcf8efb65d2136bee60fa0724aa30aa510904b2d 100644 (file)
@@ -441,7 +441,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);