Skip to content

Commit b8ffb60

Browse files
committed
fix uninitialized struct member #10152
1 parent 05ed695 commit b8ffb60

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

Python/symtable.c

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ ste_new(struct symtable *st, identifier name, _Py_block_ty block,
6666
ste->ste_varkeywords = 0;
6767
ste->ste_opt_lineno = 0;
6868
ste->ste_opt_col_offset = 0;
69+
ste->ste_tmpname = 0;
6970
ste->ste_lineno = lineno;
7071
ste->ste_col_offset = col_offset;
7172

0 commit comments

Comments
 (0)