mirror of
https://github.com/python/cpython.git
synced 2025-08-03 16:39:00 +00:00
Initialize the return value in collect_generations() since it is updated
conditionally in the code.
This commit is contained in:
parent
14a4d88a2e
commit
b16714b4d0
1 changed files with 1 additions and 1 deletions
|
@ -455,7 +455,7 @@ collect_generations(void)
|
|||
{
|
||||
static long collections0 = 0;
|
||||
static long collections1 = 0;
|
||||
long n;
|
||||
long n = 0;
|
||||
|
||||
|
||||
if (collections1 > threshold2) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue