From: Guido van Rossum Date: Mon, 20 Dec 1999 20:40:12 +0000 (+0000) Subject: The cleanup code in com-init() at label fail_0000 should remove X-Git-Tag: v1.6a1~608 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=72badf54048655ecbcb5b541428823386795231e;p=thirdparty%2FPython%2Fcpython.git The cleanup code in com-init() at label fail_0000 should remove c_varnames, not c_lnotab. --- diff --git a/Python/compile.c b/Python/compile.c index e4e37d53f8cb..37cdfc9b9bed 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: