Skip to content

Commit

Permalink
pythongh-116296: Fix refleak in reduce_newobj() corner case (pythonGH…
Browse files Browse the repository at this point in the history
…-116297)

(cherry picked from commit 17c4849)

Co-authored-by: Erlend E. Aasland <erlend@python.org>
Co-authored-by: Brandt Bucher <brandtbucher@microsoft.com>
  • Loading branch information
2 people authored and miss-islington committed Mar 4, 2024
1 parent 722b9cf commit 5215568
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
@@ -0,0 +1 @@
Fix possible refleak in :meth:`!object.__reduce__` internal error handling.
1 change: 1 addition & 0 deletions Objects/typeobject.c
Expand Up @@ -6258,6 +6258,7 @@ reduce_newobj(PyObject *obj)
}
else {
/* args == NULL */
Py_DECREF(copyreg);
Py_DECREF(kwargs);
PyErr_BadInternalCall();
return NULL;
Expand Down

0 comments on commit 5215568

Please sign in to comment.