From b4ddfa41cc320902ba2ea6949ec76d2097c71b71 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson <benjamin@python.org> Date: Sat, 17 Jan 2009 23:46:54 +0000 Subject: fix compiler warning --- Python/ceval.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/ceval.c b/Python/ceval.c index 89c3c29..fcf8efb 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -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); -- cgit v0.12