commit | 72badf54048655ecbcb5b541428823386795231e | [log] [tgz] |
---|---|---|
author | Guido van Rossum <guido@python.org> | Mon Dec 20 20:40:12 1999 +0000 |
committer | Guido van Rossum <guido@python.org> | Mon Dec 20 20:40:12 1999 +0000 |
tree | 1ff84490f1cc596cace0d7bf14bd932d4ceb651e | |
parent | e9c69bc53e915699dc62df7fca0824f95f6b3f45 [diff] |
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 e4e37d5..37cdfc9 100644 --- a/Python/compile.c +++ b/Python/compile.c
@@ -457,7 +457,7 @@ return 1; fail_0000: - Py_DECREF(c->c_lnotab); + Py_DECREF(c->c_varnames); fail_000: Py_DECREF(c->c_locals); fail_00: