diff options
author | Benjamin Peterson <benjamin@python.org> | 2015-01-04 22:03:17 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2015-01-04 22:03:17 (GMT) |
commit | f18bf6fd2d2f0d7db6a5e5b4d86b709dd2b5ce6d (patch) | |
tree | a0a31095c331e136dc8f4613c35605fbca54aa7b /Misc | |
parent | 47e782a67a79e7d4fdc4536c6d6935c0e3b45705 (diff) | |
download | cpython-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/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -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. |