commit | d17cefc7876ec646a33773dfd2aa4dde2d8187d0 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Tue Aug 16 22:28:23 2011 -0500 |
committer | Benjamin Peterson <benjamin@python.org> | Tue Aug 16 22:28:23 2011 -0500 |
tree | ea5fb737f722a7ce0dee7b54ff0a42b1f87fa266 | |
parent | 3e6267e7046b8d1473b2fd1c66dad9c4b8a81ae3 [diff] |
crush other possible refleaks in this section
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 3971062..669b709 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c
@@ -2100,6 +2100,7 @@ PyErr_Format(PyExc_ValueError, "%R in __slots__ conflicts with class variable", tmp); + Py_DECREF(newslots); goto bad_slots; } j++;