commit | f88db8de767460a6a2bd4307278ba6e9253b7770 | [log] [tgz] |
---|---|---|
author | Raymond Hettinger <python@rcn.com> | Sun Apr 18 20:26:14 2010 +0000 |
committer | Raymond Hettinger <python@rcn.com> | Sun Apr 18 20:26:14 2010 +0000 |
tree | 18750233e32ad1e4f30bb47236ea0bca74811680 | |
parent | 7276f138a533529e7687f00ef8f2be3241fad057 [diff] [blame] |
Issue 8420: Fix ref counting problem in set_repr().
diff --git a/Objects/setobject.c b/Objects/setobject.c index c3eabf5..9447441 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) {