[Python-checkins] r85757 - python/branches/py3k/Python/symtable.c

benjamin.peterson python-checkins at python.org
Wed Oct 20 23:25:23 CEST 2010


Author: benjamin.peterson
Date: Wed Oct 20 23:25:23 2010
New Revision: 85757

Log:
fix uninitialized struct member #10152

Modified:
   python/branches/py3k/Python/symtable.c

Modified: python/branches/py3k/Python/symtable.c
==============================================================================
--- python/branches/py3k/Python/symtable.c	(original)
+++ python/branches/py3k/Python/symtable.c	Wed Oct 20 23:25:23 2010
@@ -66,6 +66,7 @@
     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;
 


More information about the Python-checkins mailing list