]> granicus.if.org Git - python/commit
bpo-30640: Fix undefined behavior in _PyFunction_FastCallDict() and PyEval_EvalCodeEx...
authorZackery Spytz <Osmunda46@gmail.com>
Mon, 31 Jul 2017 14:24:37 +0000 (08:24 -0600)
committerSerhiy Storchaka <storchaka@gmail.com>
Mon, 31 Jul 2017 14:24:37 +0000 (17:24 +0300)
commitc6ea8974e2d939223bfd6d64ee13ec89c090d2e0
treeaf9793d4d928f7f37d632311d276bf914d5c355a
parenta568e5273382a5dca0c27274f7d8e34c41a87d4d
bpo-30640: Fix undefined behavior in _PyFunction_FastCallDict() and PyEval_EvalCodeEx() (#2919)

k + 1 was calculated with k = NULL.
Objects/call.c
Python/ceval.c