]> granicus.if.org Git - python/commit
Fix uninitialized memory read for cases like def(f, *): pass
authorJeremy Hylton <jeremy@alum.mit.edu>
Thu, 17 Jul 2008 16:37:17 +0000 (16:37 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Thu, 17 Jul 2008 16:37:17 +0000 (16:37 +0000)
commite921e02a2e97cc418a1c8faec135056802849864
tree9cdcd0dea2a9ca50162eb03ee8a976cf19ed6b88
parentc3fee694644cdf24bfb974dcd924fbdf524350ee
Fix uninitialized memory read for cases like def(f, *): pass

There's not much interesting here.  The old code read uninitialized
memory but at worst incremented i past NCH(n), but no bad effects
followed from that.
Python/ast.c