commit | b4ddfa41cc320902ba2ea6949ec76d2097c71b71 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Sat Jan 17 23:46:54 2009 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Sat Jan 17 23:46:54 2009 +0000 |
tree | eb2708989d340f597fc214b5320f1a13a59f4dbb | |
parent | e5bf383959ab50ce0d95668d00e1a9b90ee665d4 [diff] [blame] |
fix compiler warning
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 @@ 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);