Issue 8420: Fix ref counting problem in set_repr().

This commit is contained in:
Raymond Hettinger 2010-04-18 20:26:14 +00:00
parent 7276f138a5
commit f88db8de76
1 changed files with 1 additions and 3 deletions

View File

@ -601,10 +601,8 @@ set_repr(PySetObject *so)
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) {