Commit 359972aa authored by Jeremy Hylton's avatar Jeremy Hylton

add missing DECREF (thanks, Barry)

parent 6eadcde4
...@@ -4477,6 +4477,7 @@ symtable_update_cur(struct symtable *st) ...@@ -4477,6 +4477,7 @@ symtable_update_cur(struct symtable *st)
Py_DECREF(d); Py_DECREF(d);
return -1; return -1;
} }
Py_DECREF(d);
if (st->st_cur_type == TYPE_FUNCTION) { if (st->st_cur_type == TYPE_FUNCTION) {
if ((l = PyList_New(0)) == NULL) if ((l = PyList_New(0)) == NULL)
return -1; return -1;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment