bpo-33391: Fix refleak in set_symmetric_difference (GH-6670)

This commit is contained in:
lekma 2018-05-02 11:29:10 +02:00 committed by INADA Naoki
parent fc6aa28bfd
commit 491bbedc20
2 changed files with 4 additions and 1 deletions

View File

@ -0,0 +1 @@
Fix a leak in set_symmetric_difference().

View File

@ -1744,8 +1744,10 @@ set_symmetric_difference(PySetObject *so, PyObject *other)
if (otherset == NULL)
return NULL;
rv = set_symmetric_difference_update(otherset, (PyObject *)so);
if (rv == NULL)
if (rv == NULL) {
Py_DECREF(otherset);
return NULL;
}
Py_DECREF(rv);
return (PyObject *)otherset;
}