summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2010-10-20 21:35:05 (GMT)
committerBenjamin Peterson <benjamin@python.org>2010-10-20 21:35:05 (GMT)
commit4d3d08f961ff632f5e1e05d432ee7204fdd16800 (patch)
treed3f8c1fe5f7617190054a1fca86d0724e0c420b3 /Python
parent7e7dbab08a85937cd6a81acfc57dfff3b42dfbb6 (diff)
downloadcpython-4d3d08f961ff632f5e1e05d432ee7204fdd16800.zip
cpython-4d3d08f961ff632f5e1e05d432ee7204fdd16800.tar.gz
cpython-4d3d08f961ff632f5e1e05d432ee7204fdd16800.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.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/symtable.c b/Python/symtable.c
index ab52abf..376ad2c 100644
--- a/Python/symtable.c
+++ b/Python/symtable.c
@@ -67,6 +67,7 @@ ste_new(struct symtable *st, identifier name, _Py_block_ty block,
ste->ste_varkeywords = 0;
ste->ste_opt_lineno = 0;
ste->ste_tmpname = 0;
+ ste->ste_tmpname = 0;
ste->ste_lineno = lineno;
if (st->st_cur != NULL &&