-
-
Notifications
You must be signed in to change notification settings - Fork 31.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
bpo-26423: Fix possible overflow in wrap_lenfunc() #13606
bpo-26423: Fix possible overflow in wrap_lenfunc() #13606
Conversation
Misc/NEWS.d/next/Core and Builtins/2019-05-27-18-00-19.bpo-26423.RgUOE8.rst
Outdated
Show resolved
Hide resolved
@vstinner Thank you for your review. I have added more detail to the news entry. |
Thanks @ZackerySpytz for the PR, and @vstinner for merging it 🌮🎉.. I'm working now to backport this PR to: 3.7. |
Fix possible overflow in wrap_lenfunc() when sizeof(long) < sizeof(Py_ssize_t) (e.g., 64-bit Windows). (cherry picked from commit 05f1641) Co-authored-by: Zackery Spytz <zspytz@gmail.com>
GH-13622 is a backport of this pull request to the 3.7 branch. |
Thanks @ZackerySpytz for the PR, and @vstinner for merging it 🌮🎉.. I'm working now to backport this PR to: 2.7. |
Sorry, @ZackerySpytz and @vstinner, I could not cleanly backport this to |
GH-13625 is a backport of this pull request to the 2.7 branch. |
Fix possible overflow in wrap_lenfunc() when sizeof(long) < sizeof(Py_ssize_t) (e.g., 64-bit Windows).
https://bugs.python.org/issue26423