summaryrefslogtreecommitdiffstats
path: root/Python
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2001-01-29 22:42:28 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2001-01-29 22:42:28 (GMT)
commit2fdfadf6dd796c0a9a467c8800eaa501b0407908 (patch)
tree0eeb359087b55bee97a647a85ccb3f17672b01bc /Python
parent09ac89ae78a4977af6eda4b0e0c396f577220bd2 (diff)
downloadcpython-2fdfadf6dd796c0a9a467c8800eaa501b0407908.zip
cpython-2fdfadf6dd796c0a9a467c8800eaa501b0407908.tar.gz
cpython-2fdfadf6dd796c0a9a467c8800eaa501b0407908.tar.bz2
plug leak detected by Barry
Diffstat (limited to 'Python')
-rw-r--r--Python/compile.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/Python/compile.c b/Python/compile.c
index 100e910..8f43c53 100644
--- a/Python/compile.c
+++ b/Python/compile.c
@@ -4234,6 +4234,7 @@ symtable_free(struct symtable *st)
Py_XDECREF(st->st_children);
Py_XDECREF(st->st_stack);
Py_XDECREF(st->st_cur_id);
+ Py_XDECREF(st->st_cur_name);
PyMem_Free((void *)st);
}