From: Jeremy Hylton Date: Wed, 9 Apr 2003 21:01:42 +0000 (+0000) Subject: Missing DECREF. X-Git-Tag: v2.3c1~1233 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d06483c2f680164093a7d8f0eaef7edc1fa35d10;p=python Missing DECREF. --- diff --git a/Objects/typeobject.c b/Objects/typeobject.c index fea6e15a67..1c1b197416 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -2619,6 +2619,7 @@ reduce_2(PyObject *obj) Py_XDECREF(cls); Py_XDECREF(args); Py_XDECREF(args2); + Py_XDECREF(slots); Py_XDECREF(state); Py_XDECREF(names); Py_XDECREF(listitems);