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

This commit is contained in:
Raymond Hettinger 2010-04-18 20:28:33 +00:00
parent 79a9351b52
commit b136a9c9d7
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) {