summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSerhiy Storchaka <storchaka@gmail.com>2015-06-29 18:18:01 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2015-06-29 18:18:01 (GMT)
commitbc9e75ed023ff03f555682e57d25fee32e6548a0 (patch)
tree5f31459160ab9cae7a005ce01766d834f321e26d /Misc
parenta95a476b3ae93d890209e592d675ae64c82e05dc (diff)
parent7b6e3b91f54e8fafbb1565a7d0999dec4fca783f (diff)
downloadcpython-bc9e75ed023ff03f555682e57d25fee32e6548a0.zip
cpython-bc9e75ed023ff03f555682e57d25fee32e6548a0.tar.gz
cpython-bc9e75ed023ff03f555682e57d25fee32e6548a0.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 dc2af32..12633e2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,10 @@ Release date: 2015-07-05
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.
+
- Upgrade to Unicode 8.0.0.
- Issue #24345: Add Py_tp_finalize slot for the stable ABI.