diff options
author | Nikita Sobolev <mail@sobolevn.me> | 2024-06-21 10:48:38 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-21 10:48:38 (GMT) |
commit | 8334a1b55c93068f5d243852029baa83377ff6c9 (patch) | |
tree | 3e61ea9edd8ed368d304e532408eea1098457327 /Misc/NEWS.d | |
parent | 733dac01b0dc3047efc9027dba177d7116e47c50 (diff) | |
download | cpython-8334a1b55c93068f5d243852029baa83377ff6c9.zip cpython-8334a1b55c93068f5d243852029baa83377ff6c9.tar.gz cpython-8334a1b55c93068f5d243852029baa83377ff6c9.tar.bz2 |
gh-120384: Fix array-out-of-bounds crash in `list_ass_subscript` (#120442)
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2024-06-13-12-17-52.gh-issue-120384.w1UBGl.rst | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2024-06-13-12-17-52.gh-issue-120384.w1UBGl.rst b/Misc/NEWS.d/next/Core and Builtins/2024-06-13-12-17-52.gh-issue-120384.w1UBGl.rst new file mode 100644 index 0000000..4a4db82 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2024-06-13-12-17-52.gh-issue-120384.w1UBGl.rst @@ -0,0 +1,3 @@ +Fix an array out of bounds crash in ``list_ass_subscript``, which could be +invoked via some specificly tailored input: including concurrent modification +of a list object, where one thread assigns a slice and another clears it. |