Skip to content

[3.13] gh-151695: Fix use-after-free of the curses screen encoding (GH-151696) (GH-151706)#151723

Merged
serhiy-storchaka merged 1 commit into
python:3.13from
serhiy-storchaka:backport-7b55e9a-3.13
Jun 19, 2026
Merged

[3.13] gh-151695: Fix use-after-free of the curses screen encoding (GH-151696) (GH-151706)#151723
serhiy-storchaka merged 1 commit into
python:3.13from
serhiy-storchaka:backport-7b55e9a-3.13

Conversation

@serhiy-storchaka

@serhiy-storchaka serhiy-storchaka commented Jun 19, 2026

Copy link
Copy Markdown
Member

The module-global curses_screen_encoding stored a borrowed pointer to the encoding owned by the window returned by the first initscr() call. That window can be deallocated while unctrl() and ungetch(), which have no window of their own, still use the pointer to encode non-ASCII characters.

Keep a private copy of the encoding instead.
(cherry picked from commit 551f8e1) (cherry picked from commit 7b55e9a)

…ing (pythonGH-151696) (pythonGH-151706)

The module-global curses_screen_encoding stored a borrowed pointer to the
encoding owned by the window returned by the first initscr() call.  That
window can be deallocated while unctrl() and ungetch(), which have no window
of their own, still use the pointer to encode non-ASCII characters.

Keep a private copy of the encoding instead.
(cherry picked from commit 551f8e1)
(cherry picked from commit 7b55e9a)

Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
@serhiy-storchaka serhiy-storchaka merged commit e514b4a into python:3.13 Jun 19, 2026
42 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant