summaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorGuido van Rossum <guido@python.org>1999-12-20 20:40:12 +0000
committerGuido van Rossum <guido@python.org>1999-12-20 20:40:12 +0000
commitf9d0cb0b8dc5c4ef58304395bf54b53cf3c60370 (patch)
treed28c0f29623f1fbd50850eee5b03be2fcfbe0348 /Python
parent9cf95c9a7f4731af4ce0818409441276b113699d (diff)
downloadcpython-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.c2
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: