From 72badf54048655ecbcb5b541428823386795231e Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Mon, 20 Dec 1999 20:40:12 +0000 Subject: The cleanup code in com-init() at label fail_0000 should remove c_varnames, not c_lnotab. --- Python/compile.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Python/compile.c b/Python/compile.c index e4e37d5..37cdfc9 100644 --- a/Python/compile.c +++ b/Python/compile.c @@ -457,7 +457,7 @@ com_init(c, filename) return 1; fail_0000: - Py_DECREF(c->c_lnotab); + Py_DECREF(c->c_varnames); fail_000: Py_DECREF(c->c_locals); fail_00: -- cgit v0.12