Kaydet (Commit) 65b3dab5 authored tarafından Thomas Wouters's avatar Thomas Wouters

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

everywhere else?)
üst 9c544487
......@@ -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)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment