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 | 4cfb42dd2dc804600e9c1b33425f4a6095c46752 (patch) | |
tree | b4934c1c9eda63803aea04fa255dadeb6669c080 /Misc | |
parent | 97d67924e3a3ac1bbe07d6abc02c233a330013f1 (diff) | |
download | cpython-4cfb42dd2dc804600e9c1b33425f4a6095c46752.zip cpython-4cfb42dd2dc804600e9c1b33425f4a6095c46752.tar.gz cpython-4cfb42dd2dc804600e9c1b33425f4a6095c46752.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
@@ -152,6 +152,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. |