diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2024-03-20 14:44:05 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-20 14:44:05 (GMT) |
commit | da2f9d1417a7d28df6e1ced87d64ecf28acb0a5f (patch) | |
tree | 9b1c411e9c5ba14971109cc512c10dcdde2bcd5a /Misc | |
parent | 0325a8a8cdba6c091bcbbb3c995f3bf1d1217012 (diff) | |
download | cpython-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.rst | 2 |
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. |