diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-29 18:14:06 (GMT) |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2015-06-29 18:14:06 (GMT) |
commit | 7b6e3b91f54e8fafbb1565a7d0999dec4fca783f (patch) | |
tree | f77b8bcb146db9321bad69f307df5c5c642d9cad /Misc | |
parent | 50373e6c21e933d2fee7039204bdc51c4475d634 (diff) | |
download | cpython-7b6e3b91f54e8fafbb1565a7d0999dec4fca783f.zip cpython-7b6e3b91f54e8fafbb1565a7d0999dec4fca783f.tar.gz cpython-7b6e3b91f54e8fafbb1565a7d0999dec4fca783f.tar.bz2 |
Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray
object now always allocates place for trailing null byte and it's buffer now
is always null-terminated.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -10,6 +10,10 @@ Release date: tba Core and Builtins ----------------- +- Issue #24467: Fixed possible buffer over-read in bytearray. The bytearray + object now always allocates place for trailing null byte and it's buffer now + is always null-terminated. + - Issue #24115: Update uses of PyObject_IsTrue(), PyObject_Not(), PyObject_IsInstance(), PyObject_RichCompareBool() and _PyDict_Contains() to check for and handle errors correctly. |