fix leak in func_dealloc (forgot to decref name)

This commit is contained in:
Guido van Rossum 1995-01-20 16:58:19 +00:00
parent 40b261966a
commit e9c6bcd813
1 changed files with 1 additions and 0 deletions

View File

@ -154,6 +154,7 @@ func_dealloc(op)
{
DECREF(op->func_code);
DECREF(op->func_globals);
DECREF(op->func_name);
XDECREF(op->func_argdefs);
XDECREF(op->func_doc);
DEL(op);