Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

gh-118561: Fix crash involving list.extend in free-threaded build #118723

Merged
merged 2 commits into from
May 9, 2024

Commits on May 7, 2024

  1. pythongh-118561: Fix crash involving list.extend in free-threaded build

    The `list_preallocate_exact` function did not zero initialize array
    contents. In the free-threaded build, this could expose uninitialized
    memory to concurrent readers between the call to
    `list_preallocate_exact` and the filling of the array contents with
    items.
    colesbury committed May 7, 2024
    Configuration menu
    Copy the full SHA
    f45dfa8 View commit details
    Browse the repository at this point in the history

Commits on May 9, 2024

  1. Update Misc/NEWS.d/next/Core and Builtins/2024-05-07-16-57-56.gh-issu…

    …e-118561.wNMKVd.rst
    
    Co-authored-by: Donghee Na <donghee.na92@gmail.com>
    colesbury and corona10 committed May 9, 2024
    Configuration menu
    Copy the full SHA
    3a5c0c8 View commit details
    Browse the repository at this point in the history