From 4d3d08f961ff632f5e1e05d432ee7204fdd16800 Mon Sep 17 00:00:00 2001 From: Benjamin Peterson Date: Wed, 20 Oct 2010 21:35:05 +0000 Subject: [PATCH] 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 ........ --- Python/symtable.c | 1 + 1 file changed, 1 insertion(+) diff --git a/Python/symtable.c b/Python/symtable.c index ab52abfc63..376ad2c45a 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 && -- 2.40.0