From: Jeremy Hylton Date: Mon, 29 Jan 2001 22:42:28 +0000 (+0000) Subject: plug leak detected by Barry X-Git-Tag: v2.1a2~83 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=2fdfadf6dd796c0a9a467c8800eaa501b0407908;p=python plug leak detected by Barry --- diff --git a/Python/compile.c b/Python/compile.c index 100e910140..8f43c53bfc 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); }