From: Christian Heimes Date: Fri, 26 Jul 2013 22:33:35 +0000 (+0200) Subject: Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object(). X-Git-Tag: v3.4.0a1~67 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b7f1b38deab39cb55781c9ebc22abd273ca21480;p=thirdparty%2FPython%2Fcpython.git Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object(). --- b7f1b38deab39cb55781c9ebc22abd273ca21480 diff --cc Misc/NEWS index 321ab6e578df,ff6fe06db7b4..80bf9fd0f75f --- a/Misc/NEWS +++ b/Misc/NEWS @@@ -10,12 -12,11 +10,15 @@@ What's New in Python 3.4.0 Alpha 1 Core and Builtins ----------------- + - Issue #18552: Check return value of PyArena_AddPyObject() in + obj2ast_object(). + - 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.