summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2024-03-20 14:44:05 (GMT)
committerGitHub <noreply@github.com>2024-03-20 14:44:05 (GMT)
commitda2f9d1417a7d28df6e1ced87d64ecf28acb0a5f (patch)
tree9b1c411e9c5ba14971109cc512c10dcdde2bcd5a /Misc
parent0325a8a8cdba6c091bcbbb3c995f3bf1d1217012 (diff)
downloadcpython-da2f9d1417a7d28df6e1ced87d64ecf28acb0a5f.zip
cpython-da2f9d1417a7d28df6e1ced87d64ecf28acb0a5f.tar.gz
cpython-da2f9d1417a7d28df6e1ced87d64ecf28acb0a5f.tar.bz2
[3.12] gh-117021: Fix integer overflow in PyLong_AsPid() on non-Windows 64-bit platforms (GH-117064) (GH-117070)
(cherry picked from commit 519b2ae22b54760475bbf62b9558d453c703f9c6)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/C API/2024-03-20-13-13-22.gh-issue-117021.0Q5jBx.rst2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/C API/2024-03-20-13-13-22.gh-issue-117021.0Q5jBx.rst b/Misc/NEWS.d/next/C API/2024-03-20-13-13-22.gh-issue-117021.0Q5jBx.rst
new file mode 100644
index 0000000..2f93e1e
--- /dev/null
+++ b/Misc/NEWS.d/next/C API/2024-03-20-13-13-22.gh-issue-117021.0Q5jBx.rst
@@ -0,0 +1,2 @@
+Fix integer overflow in :c:func:`PyLong_AsPid` on non-Windows 64-bit
+platforms.