diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2011-08-30 19:40:20 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2011-08-30 19:40:20 (GMT) |
commit | 326e189410106de22c4af9d8449e0a8dc631c7dc (patch) | |
tree | aee14795e7baf029f61b898631d32af264782be3 /Misc | |
parent | caa745e7ca238313293de8cfe183df3d92f18cc9 (diff) | |
download | cpython-326e189410106de22c4af9d8449e0a8dc631c7dc.zip cpython-326e189410106de22c4af9d8449e0a8dc631c7dc.tar.gz cpython-326e189410106de22c4af9d8449e0a8dc631c7dc.tar.bz2 |
Issue #9651: Fix a crash when ctypes.create_string_buffer(0) was passed to
some functions like file.write().
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -185,6 +185,9 @@ Library Extension Modules ----------------- +- Issue #9651: Fix a crash when ctypes.create_string_buffer(0) was passed to + some functions like file.write(). + - Issue #10309: Define _GNU_SOURCE so that mremap() gets the proper signature. Without this, architectures where sizeof void* != sizeof int are broken. Patch given by Hallvard B Furuseth. |