Fix uninitialized value. (Why are we using bools instead of ints, like we do

everywhere else?)
This commit is contained in:
Thomas Wouters 2006-03-01 22:06:23 +00:00
parent 9c54448715
commit 65b3dab50e
1 changed files with 1 additions and 1 deletions

View File

@ -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)