From: Benjamin Peterson Date: Wed, 20 Oct 2010 21:28:09 +0000 (+0000) Subject: Merged revisions 85757 via svnmerge from X-Git-Tag: v2.7.1rc1~123 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=045bbcdc8e1c745e49d3f4b0d79ca8182375bce0;p=python 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 ........ --- diff --git a/Python/symtable.c b/Python/symtable.c index c18b39ecf1..51b59f0310 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 &&