summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2024-06-11 07:28:45 (GMT)
committerGitHub <noreply@github.com>2024-06-11 07:28:45 (GMT)
commit52225c64f7cd55f2bfe8515d4daf1a5ed4be6d7b (patch)
treea2ac89998c6c0baccb97dd71faa0442906fd77cb /Misc
parent81eae217335fc66bec343b9f11f1b68fe85667bf (diff)
downloadcpython-52225c64f7cd55f2bfe8515d4daf1a5ed4be6d7b.zip
cpython-52225c64f7cd55f2bfe8515d4daf1a5ed4be6d7b.tar.gz
cpython-52225c64f7cd55f2bfe8515d4daf1a5ed4be6d7b.tar.bz2
[3.13] gh-120298: Fix use-after-free in `list_richcompare_impl` (GH-120303) (#120340)
gh-120298: Fix use-after-free in `list_richcompare_impl` (GH-120303) (cherry picked from commit 141babad9b4eceb83371bf19ba3a36b50dd05250) Co-authored-by: Nikita Sobolev <mail@sobolevn.me> Co-authored-by: Serhiy Storchaka <storchaka@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2024-06-10-10-42-48.gh-issue-120298.napREA.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2024-06-10-10-42-48.gh-issue-120298.napREA.rst b/Misc/NEWS.d/next/Core and Builtins/2024-06-10-10-42-48.gh-issue-120298.napREA.rst
new file mode 100644
index 0000000..531d395
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2024-06-10-10-42-48.gh-issue-120298.napREA.rst
@@ -0,0 +1,2 @@
+Fix use-after free in ``list_richcompare_impl`` which can be invoked via
+some specificly tailored evil input.