commit | b8ffb60ec68f1ddbbfc8efe0617038537347f46d | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Wed Oct 20 21:25:23 2010 +0000 |
committer | Benjamin Peterson <benjamin@python.org> | Wed Oct 20 21:25:23 2010 +0000 |
tree | 628ac12df201be4fcc07b95acd02d41f78fc92c3 | |
parent | 05ed69590bf9ab4907c070c82d2490fb6df4978c [diff] |
fix uninitialized struct member #10152
diff --git a/Python/symtable.c b/Python/symtable.c index 4a6c523..15ba6b5 100644 --- a/Python/symtable.c +++ b/Python/symtable.c
@@ -66,6 +66,7 @@ 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;