bpo-33391: Fix refleak in set_symmetric_difference (GH-6670)
(cherry picked from commit 491bbedc20
)
Co-authored-by: lekma <lekmalek@gmail.com>
This commit is contained in:
parent
5818f08962
commit
6d3d02c69a
|
@ -0,0 +1 @@
|
|||
Fix a leak in set_symmetric_difference().
|
|
@ -1710,8 +1710,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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue