diff options
| author | Benjamin Peterson <benjamin@python.org> | 2009-01-17 23:46:54 +0000 |
|---|---|---|
| committer | Benjamin Peterson <benjamin@python.org> | 2009-01-17 23:46:54 +0000 |
| commit | e35dea06ab53dc3d1c6da5b22b36d67c6073d608 (patch) | |
| tree | 6ddec59446fe75c674a4468606146412da048411 /Python/ceval.c | |
| parent | 2cc1925f215e43dadb8b1f4cdbd8ed22a93baebf (diff) | |
| download | cpython-e35dea06ab53dc3d1c6da5b22b36d67c6073d608.tar.gz | |
fix compiler warning
Diffstat (limited to 'Python/ceval.c')
| -rw-r--r-- | Python/ceval.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Python/ceval.c b/Python/ceval.c index 89c3c2925a..fcf8efb65d 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); |
