summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2022-10-07 00:36:39 (GMT)
committerPablo Galindo <pablogsal@gmail.com>2022-10-22 19:09:08 (GMT)
commitd0ab10f6f0163c397af4412175fe9ca0b2d96b4b (patch)
tree28d41b1a7ff0d6e330be1a961a9e597b18099b71 /Misc
parent154b3cd751642b6f21a090ad548785bfa1cbc686 (diff)
downloadcpython-d0ab10f6f0163c397af4412175fe9ca0b2d96b4b.zip
cpython-d0ab10f6f0163c397af4412175fe9ca0b2d96b4b.tar.gz
cpython-d0ab10f6f0163c397af4412175fe9ca0b2d96b4b.tar.bz2
[3.11] GH-97002: Prevent _PyInterpreterFrames from backing more than one PyFrameObject (GH-98002)
(cherry picked from commit 21a2d9ff550977f2668e2cf1cc15793bf27fa109)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-10-06-02-11-34.gh-issue-97002.Zvsk71.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-10-06-02-11-34.gh-issue-97002.Zvsk71.rst b/Misc/NEWS.d/next/Core and Builtins/2022-10-06-02-11-34.gh-issue-97002.Zvsk71.rst
new file mode 100644
index 0000000..1f577e0
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-10-06-02-11-34.gh-issue-97002.Zvsk71.rst
@@ -0,0 +1,3 @@
+Fix an issue where several frame objects could be backed by the same
+interpreter frame, possibly leading to corrupted memory and hard crashes of
+the interpreter.