diff options
author | Benjamin Peterson <benjamin@python.org> | 2011-08-16 22:26:48 -0500 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2011-08-16 22:26:48 -0500 |
commit | de66ecc75fc06abbee21100e760cc7a5542c0308 (patch) | |
tree | f018db3b9caabd962fcab723ff23a3610344eaf9 | |
parent | 4047d68a0565bb43d3d1b2f489e500f247d89b2b (diff) | |
download | cpython-git-de66ecc75fc06abbee21100e760cc7a5542c0308.tar.gz |
fix possible refleaks
-rw-r--r-- | Objects/typeobject.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Objects/typeobject.c b/Objects/typeobject.c index 3864b48b4b..7c98cfdf37 100644 --- a/Objects/typeobject.c +++ b/Objects/typeobject.c @@ -2235,8 +2235,10 @@ type_new(PyTypeObject *metatype, PyObject *args, PyObject *kwds) (add_weak && strcmp(s, "__weakref__") == 0)) continue; tmp =_Py_Mangle(name, tmp); - if (!tmp) + if (!tmp) { + Py_DECREF(newslots); goto bad_slots; + } PyList_SET_ITEM(newslots, j, tmp); j++; } |