diff options
author | Guido van Rossum <guido@python.org> | 1999-12-20 20:40:12 (GMT) |
---|---|---|
committer | Guido van Rossum <guido@python.org> | 1999-12-20 20:40:12 (GMT) |
commit | 72badf54048655ecbcb5b541428823386795231e (patch) | |
tree | 1ff84490f1cc596cace0d7bf14bd932d4ceb651e /Python | |
parent | e9c69bc53e915699dc62df7fca0824f95f6b3f45 (diff) | |
download | cpython-72badf54048655ecbcb5b541428823386795231e.zip cpython-72badf54048655ecbcb5b541428823386795231e.tar.gz cpython-72badf54048655ecbcb5b541428823386795231e.tar.bz2 |
The cleanup code in com-init() at label fail_0000 should remove
c_varnames, not c_lnotab.
Diffstat (limited to 'Python')
-rw-r--r-- | Python/compile.c | 2 |
1 files changed, 1 insertions, 1 deletions
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: |