commit | 65b3dab50e7192b4ad6cae046c3ed15b53752ac4 | [log] [tgz] |
---|---|---|
author | Thomas Wouters <thomas@python.org> | Wed Mar 01 22:06:23 2006 +0000 |
committer | Thomas Wouters <thomas@python.org> | Wed Mar 01 22:06:23 2006 +0000 |
tree | ece32092db542dba5084bc582f610b3b3899ea2a | |
parent | 9c54448715d5ba2e6cc661d4b5596f00c006a66e [diff] [blame] |
Fix uninitialized value. (Why are we using bools instead of ints, like we do everywhere else?)
diff --git a/Python/ast.c b/Python/ast.c index 7edd345..4e508eb 100644 --- a/Python/ast.c +++ b/Python/ast.c
@@ -1415,7 +1415,7 @@ 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)