diff options
author | Zackery Spytz <zspytz@gmail.com> | 2019-05-28 12:55:29 (GMT) |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2019-05-28 12:55:28 (GMT) |
commit | 05f16416d99dc9fc76fef11e56f16593e7a5955e (patch) | |
tree | a440208f390b4c412ec28ceba4a508a6218a4075 /Misc/NEWS.d | |
parent | 04530812e90e45a37ed84e83505d63db7edc1262 (diff) | |
download | cpython-05f16416d99dc9fc76fef11e56f16593e7a5955e.zip cpython-05f16416d99dc9fc76fef11e56f16593e7a5955e.tar.gz cpython-05f16416d99dc9fc76fef11e56f16593e7a5955e.tar.bz2 |
bpo-26423: Fix possible overflow in wrap_lenfunc() (GH-13606)
Fix possible overflow in wrap_lenfunc() when
sizeof(long) < sizeof(Py_ssize_t) (e.g., 64-bit Windows).
Diffstat (limited to 'Misc/NEWS.d')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2019-05-27-18-00-19.bpo-26423.RgUOE8.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2019-05-27-18-00-19.bpo-26423.RgUOE8.rst b/Misc/NEWS.d/next/Core and Builtins/2019-05-27-18-00-19.bpo-26423.RgUOE8.rst new file mode 100644 index 0000000..6bf2031 --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2019-05-27-18-00-19.bpo-26423.RgUOE8.rst @@ -0,0 +1,2 @@ +Fix possible overflow in ``wrap_lenfunc()`` when +``sizeof(long) < sizeof(Py_ssize_t)`` (e.g., 64-bit Windows). |