commit | b136a9c9d718e6cc717aef45daec9e8b28423b06 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sun Apr 18 20:28:33 2010 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Sun Apr 18 20:28:33 2010 +0000 |
tree | 2569174d9bad3644fa1d988daa320415aa174c4b | |
parent | 79a9351b52ac69dc89d7a23c02a2ed62fe1cf534 [diff] |
Issue 8420: Fix ref counting problem in set_repr().
diff --git a/Objects/setobject.c b/Objects/setobject.c index 742dadc..d2a55fc 100644 --- a/Objects/setobject.c +++ b/Objects/setobject.c
@@ -601,10 +601,8 @@ listrepr = PyObject_Repr(keys); Py_DECREF(keys); - if (listrepr == NULL) { - Py_DECREF(keys); + if (listrepr == NULL) goto done; - } newsize = PyUnicode_GET_SIZE(listrepr); result = PyUnicode_FromUnicode(NULL, newsize); if (result) {