summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-09-07 11:04:41 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-09-07 11:04:41 (GMT)
commitbe8da9c9906571698fe218da9e218ece500d5239 (patch)
tree266a4c850eecabfe37873825cd5414c034e98769 /Misc
parent799520c91ef6f2d1016e1f05790779a9cb7624d9 (diff)
downloadcpython-be8da9c9906571698fe218da9e218ece500d5239.zip
cpython-be8da9c9906571698fe218da9e218ece500d5239.tar.gz
cpython-be8da9c9906571698fe218da9e218ece500d5239.tar.bz2
Issue #27570: Avoid zero-length memcpy() calls with null source pointers
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 31bf815..83dc4f6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -67,6 +67,9 @@ Core and Builtins
Library
-------
+- Issue #27570: Avoid zero-length memcpy() etc calls with null source
+ pointers in the "ctypes" and "array" modules.
+
- Issue #22233: Break email header lines *only* on the RFC specified CR and LF
characters, not on arbitrary unicode line breaks. This also fixes a bug in
HTTP header parsing.