From 2fdfadf6dd796c0a9a467c8800eaa501b0407908 Mon Sep 17 00:00:00 2001 From: Jeremy Hylton Date: Mon, 29 Jan 2001 22:42:28 +0000 Subject: plug leak detected by Barry --- Python/compile.c | 1 + 1 file changed, 1 insertion(+) 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); } -- cgit v0.12