mirror of
https://github.com/python/cpython.git
synced 2025-07-08 03:45:36 +00:00
fix uninitialized struct member #10152
This commit is contained in:
parent
05ed69590b
commit
b8ffb60ec6
1 changed files with 1 additions and 0 deletions
|
@ -66,6 +66,7 @@ ste_new(struct symtable *st, identifier name, _Py_block_ty block,
|
|||
ste->ste_varkeywords = 0;
|
||||
ste->ste_opt_lineno = 0;
|
||||
ste->ste_opt_col_offset = 0;
|
||||
ste->ste_tmpname = 0;
|
||||
ste->ste_lineno = lineno;
|
||||
ste->ste_col_offset = col_offset;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue