summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-03-05 14:21:12 (GMT)
committerHirokazu Yamamoto <ocean-city@m2.ccsnet.ne.jp>2009-03-05 14:21:12 (GMT)
commit264fc12fbff471d137f61e5fd7152f5a7df9eb6c (patch)
tree4b8c2c1496a7b81bcee8245000c3f3f7af914478 /Misc/NEWS
parenta3e6c9763c475a93ab5fab0a42b2b3718e196d93 (diff)
downloadcpython-264fc12fbff471d137f61e5fd7152f5a7df9eb6c.zip
cpython-264fc12fbff471d137f61e5fd7152f5a7df9eb6c.tar.gz
cpython-264fc12fbff471d137f61e5fd7152f5a7df9eb6c.tar.bz2
Issue #5385: Fixed mmap crash after resize failure on windows.
Now uses NULL instead of INVALID_HANDLE_VALUE as invalid map handle because CreateFileMapping returns NULL when error occurs.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS2
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 6e71500..d03ed95 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -168,6 +168,8 @@ Core and Builtins
Library
-------
+- Issue #5385: Fixed mmap crash after resize failure on windows.
+
- Issue #5179: Fixed subprocess handle leak on failure on windows.
- PEP 372: Added collections.OrderedDict().