diff options
author | Mark Dickinson <dickinsm@gmail.com> | 2009-02-08 17:33:11 +0000 |
---|---|---|
committer | Mark Dickinson <dickinsm@gmail.com> | 2009-02-08 17:33:11 +0000 |
commit | 9e58a372524f86362921978f18b0aca07da57e20 (patch) | |
tree | 6bb39ddeb9658b1d0ea5ee94efac4199a8cb36f0 /Python/ceval.c | |
parent | b8e17f7370ff7064bc7cd1d3f7d6e053946581f0 (diff) | |
download | cpython-git-9e58a372524f86362921978f18b0aca07da57e20.tar.gz |
Silence 'arg may be used uninitialized in this function' warning from gcc.
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 4facda4810..d457fd5489 100644 --- a/Python/ceval.c +++ b/Python/ceval.c @@ -450,7 +450,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); |