From 65b3dab50e7192b4ad6cae046c3ed15b53752ac4 Mon Sep 17 00:00:00 2001 From: Thomas Wouters Date: Wed, 1 Mar 2006 22:06:23 +0000 Subject: [PATCH] Fix uninitialized value. (Why are we using bools instead of ints, like we do everywhere else?) --- Python/ast.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/ast.c b/Python/ast.c index 7edd345fef..4e508ebe88 100644 --- a/Python/ast.c +++ b/Python/ast.c @@ -1415,7 +1415,7 @@ ast_for_trailer(struct compiling *c, const node *n, expr_ty left_expr) int j; slice_ty slc; expr_ty e; - bool simple; + bool simple = true; asdl_seq *slices, *elts; slices = asdl_seq_new((NCH(n) + 1) / 2, c->c_arena); if (!slices) -- 2.50.1