commit | 550b945fd66f1c6837a53fbf29dc8e524297b8c3 | [log] [tgz] |
---|---|---|
author | Benjamin Peterson <benjamin@python.org> | Mon Jun 23 20:12:27 2014 -0700 |
committer | Benjamin Peterson <benjamin@python.org> | Mon Jun 23 20:12:27 2014 -0700 |
tree | 9d6b81940eca93ae47d34fdde011be411aa68c80 | |
parent | 58eb605ca3735b9d9b608de1a1ffeec14c516e40 [diff] [blame] |
avoid overflow with large buffer sizes and/or offsets (closes #21831)
diff --git a/Misc/NEWS b/Misc/NEWS index 3238d06..a077b4d 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -10,6 +10,9 @@ Core and Builtins ----------------- +- Issue #21831: Avoid integer overflow when large sizes and offsets are given to + the buffer type. + - Issue #1856: Avoid crashes and lockups when daemon threads run while the interpreter is shutting down; instead, these threads are now killed when they try to take the GIL.