mirror of
https://github.com/python/cpython.git
synced 2025-10-03 13:45:29 +00:00
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
01e19f8fed
commit
6a56790e0b
2 changed files with 4 additions and 1 deletions
|
@ -0,0 +1 @@
|
||||||
|
Fix a leak in set_symmetric_difference().
|
|
@ -1744,8 +1744,10 @@ set_symmetric_difference(PySetObject *so, PyObject *other)
|
||||||
if (otherset == NULL)
|
if (otherset == NULL)
|
||||||
return NULL;
|
return NULL;
|
||||||
rv = set_symmetric_difference_update(otherset, (PyObject *)so);
|
rv = set_symmetric_difference_update(otherset, (PyObject *)so);
|
||||||
if (rv == NULL)
|
if (rv == NULL) {
|
||||||
|
Py_DECREF(otherset);
|
||||||
return NULL;
|
return NULL;
|
||||||
|
}
|
||||||
Py_DECREF(rv);
|
Py_DECREF(rv);
|
||||||
return (PyObject *)otherset;
|
return (PyObject *)otherset;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue