]> granicus.if.org Git - python/commit
Fix memory leak in exec statement with code object -- the None returned
authorGuido van Rossum <guido@python.org>
Tue, 11 Nov 1997 16:29:38 +0000 (16:29 +0000)
committerGuido van Rossum <guido@python.org>
Tue, 11 Nov 1997 16:29:38 +0000 (16:29 +0000)
commitdfed725e2c351676174ed2e046fe6c5288e21488
tree2a527d0c6f6c7ecc8a542432ad771cf5040f4bca
parent3120bc388805ba51d48bdfb2ed9f2923ee2241b2
Fix memory leak in exec statement with code object -- the None returned
by PyEval_EvalCode() on success was never DECREF'ed.

Fix by Bernhard Herzog.
Python/ceval.c