mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Issue #15876: Fix a refleak in the curses module
The refleak occurred when assigning to window.encoding.
This commit is contained in:
parent
4e2514031a
commit
2dabaf63cf
2 changed files with 3 additions and 0 deletions
|
@ -26,6 +26,8 @@ Core and Builtins
|
|||
Library
|
||||
-------
|
||||
|
||||
- Issue #15876: Fix a refleak in the curses module: window.encoding.
|
||||
|
||||
- Issue #15841: The readable(), writable() and seekable() methods of BytesIO
|
||||
and StringIO objects now raise ValueError when the object has been closed.
|
||||
Patch by Alessandro Moura.
|
||||
|
|
|
@ -1938,6 +1938,7 @@ PyCursesWindow_set_encoding(PyCursesWindowObject *self, PyObject *value)
|
|||
if (ascii == NULL)
|
||||
return -1;
|
||||
encoding = strdup(PyBytes_AS_STRING(ascii));
|
||||
Py_DECREF(ascii);
|
||||
if (encoding == NULL) {
|
||||
PyErr_NoMemory();
|
||||
return -1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue