summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorKumar Aditya <59607654+kumaraditya303@users.noreply.github.com>2022-09-09 11:33:40 (GMT)
committerGitHub <noreply@github.com>2022-09-09 11:33:40 (GMT)
commit88a7f661ca02c0eb76b8f19234b8293b70f171e2 (patch)
tree76098ddbead29a28d0f936e8c30f7b29f334e23a /Misc
parent30cc1901efa18180a83bf8402df9e1c10d877c49 (diff)
downloadcpython-88a7f661ca02c0eb76b8f19234b8293b70f171e2.zip
cpython-88a7f661ca02c0eb76b8f19234b8293b70f171e2.tar.gz
cpython-88a7f661ca02c0eb76b8f19234b8293b70f171e2.tar.bz2
Fix possible NULL pointer dereference in _PyThread_CurrentFrames (GH-96584)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2022-09-05-15-07-25.gh-issue-96582.HEsL5s.rst1
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2022-09-05-15-07-25.gh-issue-96582.HEsL5s.rst b/Misc/NEWS.d/next/Core and Builtins/2022-09-05-15-07-25.gh-issue-96582.HEsL5s.rst
new file mode 100644
index 0000000..162f7ba
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2022-09-05-15-07-25.gh-issue-96582.HEsL5s.rst
@@ -0,0 +1 @@
+Fix possible ``NULL`` pointer dereference in ``_PyThread_CurrentFrames``. Patch by Kumar Aditya.