diff options
author | Benjamin Peterson <benjamin@python.org> | 2010-10-20 21:28:09 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2010-10-20 21:28:09 (GMT) |
commit | 045bbcdc8e1c745e49d3f4b0d79ca8182375bce0 (patch) | |
tree | ced76a71b7cb8861245621cfd070e718a5c78b1f /Python | |
parent | 2421525e2147b8decfe58f8667212fbe0ff7f454 (diff) | |
download | cpython-045bbcdc8e1c745e49d3f4b0d79ca8182375bce0.zip cpython-045bbcdc8e1c745e49d3f4b0d79ca8182375bce0.tar.gz cpython-045bbcdc8e1c745e49d3f4b0d79ca8182375bce0.tar.bz2 |
Merged revisions 85757 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k
........
r85757 | benjamin.peterson | 2010-10-20 16:25:23 -0500 (Wed, 20 Oct 2010) | 1 line
fix uninitialized struct member #10152
........
Diffstat (limited to 'Python')
-rw-r--r-- | Python/symtable.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/symtable.c b/Python/symtable.c index c18b39e..51b59f0 100644 --- a/Python/symtable.c +++ b/Python/symtable.c @@ -59,6 +59,7 @@ ste_new(struct symtable *st, identifier name, _Py_block_ty block, ste->ste_varargs = 0; ste->ste_varkeywords = 0; ste->ste_opt_lineno = 0; + ste->ste_tmpname = 0; ste->ste_lineno = lineno; if (st->st_cur != NULL && |