summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2015-01-04 22:03:17 (GMT)
committerBenjamin Peterson <benjamin@python.org>2015-01-04 22:03:17 (GMT)
commitf18bf6fd2d2f0d7db6a5e5b4d86b709dd2b5ce6d (patch)
treea0a31095c331e136dc8f4613c35605fbca54aa7b /Misc
parent47e782a67a79e7d4fdc4536c6d6935c0e3b45705 (diff)
downloadcpython-f18bf6fd2d2f0d7db6a5e5b4d86b709dd2b5ce6d.zip
cpython-f18bf6fd2d2f0d7db6a5e5b4d86b709dd2b5ce6d.tar.gz
cpython-f18bf6fd2d2f0d7db6a5e5b4d86b709dd2b5ce6d.tar.bz2
add some overflow checks before multiplying (closes #23165)
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 3cff3cd..e841862 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -10,6 +10,9 @@ What's New in Python 3.2.6?
Core and Builtins
-----------------
+- Issue #23165: Perform overflow checks before allocating memory in the
+ _Py_char2wchar function.
+
- Issue #19529: Fix a potential crash in converting Unicode objects to wchar_t
when Py_UNICODE is 4 bytes but wchar_t is 2 bytes, for example on AIX.