]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
[3.9] bpo-41604: Don't decrement the reference count of the previous user_ptr when...
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Sun, 31 Jan 2021 20:51:23 +0000 (12:51 -0800)
committerGitHub <noreply@github.com>
Sun, 31 Jan 2021 20:51:23 +0000 (12:51 -0800)
(cherry picked from commit 3243e8a4b4b4cf321f9b28335d565742a34b1976)

Co-authored-by: Anonymous Maarten <madebr@users.noreply.github.com>
(cherry picked from commit 3c8d6934436e20163be802f5239c5b4e4925eeec)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Misc/NEWS.d/next/Library/2020-08-21-15-24-14.bpo-41604.rTXleO.rst [new file with mode: 0644]
Modules/_curses_panel.c

diff --git a/Misc/NEWS.d/next/Library/2020-08-21-15-24-14.bpo-41604.rTXleO.rst b/Misc/NEWS.d/next/Library/2020-08-21-15-24-14.bpo-41604.rTXleO.rst
new file mode 100644 (file)
index 0000000..0f9794c
--- /dev/null
@@ -0,0 +1,2 @@
+Don't decrement the reference count of the previous user_ptr when
+set_panel_userptr fails.
index 53849e3a29cc0252e9e601d13aea7c248757d75b..d22e2adf89c83958fbea6c980f8dbf95313ef2fe 100644 (file)
@@ -433,7 +433,9 @@ _curses_panel_panel_set_userptr(PyCursesPanelObject *self, PyObject *obj)
         /* In case of an ncurses error, decref the new object again */
         Py_DECREF(obj);
     }
-    Py_XDECREF(oldobj);
+    else {
+        Py_XDECREF(oldobj);
+    }
     return PyCursesCheckERR(rc, "set_panel_userptr");
 }