Merged revisions 70052 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r70052 | hirokazu.yamamoto | 2009-02-28 19:31:54 +0900 | 2 lines
Issue #5386: mmap.write_byte didn't check map size, so it could cause buffer
overrun.
........
diff --git a/Misc/NEWS b/Misc/NEWS
index efa19a2..3553dbc 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -89,6 +89,9 @@
Library
-------
+- Issue #5386: mmap.write_byte didn't check map size, so it could cause buffer
+ overrun.
+
- Issue #5292: Fixed mmap crash on its boundary access m[len(m)].
- Issue #5282: Fixed mmap resize on 32bit windows and unix. When offset > 0,