bpo-33391: Fix refleak in set_symmetric_difference (GH-6670)
This commit is contained in:
parent
fc6aa28bfd
commit
491bbedc20
|
@ -0,0 +1 @@
|
|||
Fix a leak in set_symmetric_difference().
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue