summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorAntoine Pitrou <solipsis@pitrou.net>2011-01-20 21:07:24 (GMT)
committerAntoine Pitrou <solipsis@pitrou.net>2011-01-20 21:07:24 (GMT)
commit305bc9e0e89f00b50512caeea5ab4bd59887baa3 (patch)
tree0fa9df1716285ceaf81ec4cc760e15d06a654c1f /Misc
parent9ee94dec184631e16bcf50e4bfdd7e26e8e9ace0 (diff)
downloadcpython-305bc9e0e89f00b50512caeea5ab4bd59887baa3.zip
cpython-305bc9e0e89f00b50512caeea5ab4bd59887baa3.tar.gz
cpython-305bc9e0e89f00b50512caeea5ab4bd59887baa3.tar.bz2
Issue #10955: Fix a potential crash when trying to mmap() a file past its
length. Initial patch by Ross Lagerwall. This fixes a regression introduced by r88022.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 03912b3..44d39cf 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -16,6 +16,9 @@ Core and Builtins
Library
-------
+- Issue #10955: Fix a potential crash when trying to mmap() a file past its
+ length. Initial patch by Ross Lagerwall.
+
- Issue #10898: Allow compiling the posix module when the C library defines
a symbol named FSTAT.