summaryrefslogtreecommitdiff
path: root/Python/ceval.c
diff options
context:
space:
mode:
Diffstat (limited to 'Python/ceval.c')
-rw-r--r--Python/ceval.c2
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);