diff options
-rw-r--r-- | Objects/typeobject.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 7a79bcb..ec36bfd 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -2729,10 +2729,13 @@ slot_sq_length(PyObject *self) { static PyObject *len_str; PyObject *res = call_method(self, "__len__", &len_str, "()"); + int len; if (res == NULL) return -1; - return (int)PyInt_AsLong(res); + len = (int)PyInt_AsLong(res); + Py_DECREF(res); + return len; } SLOT1(slot_sq_concat, "__add__", PyObject *, "O") |