summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2024-06-21 10:48:38 (GMT)
committerGitHub <noreply@github.com>2024-06-21 10:48:38 (GMT)
commit8334a1b55c93068f5d243852029baa83377ff6c9 (patch)
tree3e61ea9edd8ed368d304e532408eea1098457327 /Misc/NEWS.d
parent733dac01b0dc3047efc9027dba177d7116e47c50 (diff)
downloadcpython-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.rst3
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.