diff options
| author | Guido van Rossum <guido@python.org> | 1999-12-20 20:40:12 +0000 |
|---|---|---|
| committer | Guido van Rossum <guido@python.org> | 1999-12-20 20:40:12 +0000 |
| commit | f9d0cb0b8dc5c4ef58304395bf54b53cf3c60370 (patch) | |
| tree | d28c0f29623f1fbd50850eee5b03be2fcfbe0348 /Python | |
| parent | 9cf95c9a7f4731af4ce0818409441276b113699d (diff) | |
| download | cpython-f9d0cb0b8dc5c4ef58304395bf54b53cf3c60370.tar.gz | |
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 e4e37d53f8..37cdfc9b9b 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: |
