summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-06-29 18:14:06 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-06-29 18:14:06 (GMT)
commit7b6e3b91f54e8fafbb1565a7d0999dec4fca783f (patch)
treef77b8bcb146db9321bad69f307df5c5c642d9cad /Misc
parent50373e6c21e933d2fee7039204bdc51c4475d634 (diff)
downloadcpython-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/NEWS4
1 files changed, 4 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1e1eba6..9d8f1e8 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -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.