summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS.d
diff options
context:
space:
mode:
authorBénédikt Tran <10796600+picnixz@users.noreply.github.com>2024-10-25 18:15:09 (GMT)
committerGitHub <noreply@github.com>2024-10-25 18:15:09 (GMT)
commitc5b99f5c2c5347d66b9da362773969c531fb6c85 (patch)
treeba21ff3d58b0d89b3f0fc0594c92ee4a72086e82 /Misc/NEWS.d
parent13844094609cf8265a2eed023e33c7002f3f530d (diff)
downloadcpython-c5b99f5c2c5347d66b9da362773969c531fb6c85.zip
cpython-c5b99f5c2c5347d66b9da362773969c531fb6c85.tar.gz
cpython-c5b99f5c2c5347d66b9da362773969c531fb6c85.tar.bz2
gh-125969: fix OOB in `future_schedule_callbacks` due to an evil `call_soon` (#125970)
Co-authored-by: Andrew Svetlov <andrew.svetlov@gmail.com>
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r--Misc/NEWS.d/next/Library/2024-10-25-11-13-24.gh-issue-125969.YvbrTr.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-10-25-11-13-24.gh-issue-125969.YvbrTr.rst b/Misc/NEWS.d/next/Library/2024-10-25-11-13-24.gh-issue-125969.YvbrTr.rst
new file mode 100644
index 0000000..dc99adf
--- /dev/null
+++ b/Misc/NEWS.d/next/Library/2024-10-25-11-13-24.gh-issue-125969.YvbrTr.rst
@@ -0,0 +1,2 @@
+Fix an out-of-bounds crash when an evil :meth:`asyncio.loop.call_soon`
+mutates the length of the internal callbacks list. Patch by Bénédikt Tran.