From: Benjamin Peterson Date: Wed, 20 Oct 2010 21:25:23 +0000 (+0000) Subject: fix uninitialized struct member #10152 X-Git-Tag: v3.2a4~408 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b8ffb60ec68f1ddbbfc8efe0617038537347f46d;p=thirdparty%2FPython%2Fcpython.git fix uninitialized struct member #10152 --- diff --git a/Python/symtable.c b/Python/symtable.c index 4a6c52335bb4..15ba6b5e2f0c 100644 --- a/Python/symtable.c +++ b/Python/symtable.c @@ -66,6 +66,7 @@ ste_new(struct symtable *st, identifier name, _Py_block_ty block, 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;