]> granicus.if.org Git - python/commitdiff
Remove warning about local variable possibly being using uninitialized;
authorFred Drake <fdrake@acm.org>
Tue, 4 Jul 2000 18:48:46 +0000 (18:48 +0000)
committerFred Drake <fdrake@acm.org>
Tue, 4 Jul 2000 18:48:46 +0000 (18:48 +0000)
noted by Marc-Andre Lemburg <mal@lemburg.com>.

Modules/parsermodule.c

index 7a99283a7f3260b06be0bd77a491896a74e3e7d0..8baa693f9ccfdadfc40c3479e04334b14b5b45bc 100644 (file)
@@ -2086,7 +2086,7 @@ static int
 validate_arglist(node *tree)
 {
     int nch = NCH(tree);
-    int i, ok;
+    int i, ok = 1;
     node *last;
 
     if (nch <= 0)