From b16714b4d0657829d4050058b240f0390c61018f Mon Sep 17 00:00:00 2001 From: Vladimir Marangozov Date: Mon, 10 Jul 2000 05:37:39 +0000 Subject: [PATCH] Initialize the return value in collect_generations() since it is updated conditionally in the code. --- Modules/gcmodule.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/gcmodule.c b/Modules/gcmodule.c index 8c0dc3d528e..43acbef6d22 100644 --- a/Modules/gcmodule.c +++ b/Modules/gcmodule.c @@ -455,7 +455,7 @@ collect_generations(void) { static long collections0 = 0; static long collections1 = 0; - long n; + long n = 0; if (collections1 > threshold2) {