Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit b4ddfa4

Browse files
committed
fix compiler warning
1 parent e5bf383 commit b4ddfa4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Python/ceval.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -441,7 +441,7 @@ Py_MakePendingCalls(void)
441441
for (i=0; i<NPENDINGCALLS; i++) {
442442
int j;
443443
int (*func)(void *);
444-
void *arg;
444+
void *arg = NULL;
445445

446446
/* pop one item off the queue while holding the lock */
447447
PyThread_acquire_lock(pending_lock, WAIT_LOCK);

0 commit comments

Comments
 (0)