From: Christian Heimes Date: Fri, 26 Jul 2013 20:50:01 +0000 (+0200) Subject: Issue #18560: Fix potential NULL pointer dereference in sum() X-Git-Tag: v3.4.0a1~71 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=4ebf6d7c3c2a0b04dd815c0b042294e36d644954;p=python Issue #18560: Fix potential NULL pointer dereference in sum() --- 4ebf6d7c3c2a0b04dd815c0b042294e36d644954 diff --cc Misc/NEWS index 2f387e7475,505fab5820..10ea9f7da7 --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,10 -12,8 +10,12 @@@ What's New in Python 3.4.0 Alpha 1 Core and Builtins ----------------- + - Issue #18560: Fix potential NULL pointer dereference in sum(). + +- Issue #18520: Add a new PyStructSequence_InitType2() function, same than + PyStructSequence_InitType() except that it has a return value (0 on success, + -1 on error). + - Issue #15905: Fix theoretical buffer overflow in handling of sys.argv[0], prefix and exec_prefix if the operation system does not obey MAXPATHLEN.