summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2013-07-26 22:33:13 (GMT)
committerChristian Heimes <christian@cheimes.de>2013-07-26 22:33:13 (GMT)
commit70c94e7896bc46c81e7b9648bde4745ce874f552 (patch)
treeed620e878815892dbed1011f1e5047f2713e0420
parent1acc129d48121cc7ce5860e6825f14bdb8ea6d09 (diff)
downloadcpython-70c94e7896bc46c81e7b9648bde4745ce874f552.zip
cpython-70c94e7896bc46c81e7b9648bde4745ce874f552.tar.gz
cpython-70c94e7896bc46c81e7b9648bde4745ce874f552.tar.bz2
Issue #18552: Check return value of PyArena_AddPyObject() in obj2ast_object().
-rw-r--r--Misc/NEWS3
-rwxr-xr-xParser/asdl_c.py10
-rw-r--r--Python/Python-ast.c10
3 files changed, 17 insertions, 6 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 769b80e..ff6fe06 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -12,6 +12,9 @@ What's New in Python 3.3.3 release candidate 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 #15905: Fix theoretical buffer overflow in handling of sys.argv[0],
diff --git a/Parser/asdl_c.py b/Parser/asdl_c.py
index 2568222..e61aae2 100755
--- a/Parser/asdl_c.py
+++ b/Parser/asdl_c.py
@@ -834,9 +834,13 @@ static int obj2ast_object(PyObject* obj, PyObject** out, PyArena* arena)
{
if (obj == Py_None)
obj = NULL;
- if (obj)
- PyArena_AddPyObject(arena, obj);
- Py_XINCREF(obj);
+ if (obj) {
+ if (PyArena_AddPyObject(arena, obj) < 0) {
+ *out = NULL;
+ return -1;
+ }
+ Py_INCREF(obj);
+ }
*out = obj;
return 0;
}
diff --git a/Python/Python-ast.c b/Python/Python-ast.c
index d78657c..7bf2c50 100644
--- a/Python/Python-ast.c
+++ b/Python/Python-ast.c
@@ -688,9 +688,13 @@ static int obj2ast_object(PyObject* obj, PyObject** out, PyArena* arena)
{
if (obj == Py_None)
obj = NULL;
- if (obj)
- PyArena_AddPyObject(arena, obj);
- Py_XINCREF(obj);
+ if (obj) {
+ if (PyArena_AddPyObject(arena, obj) < 0) {
+ *out = NULL;
+ return -1;
+ }
+ Py_INCREF(obj);
+ }
*out = obj;
return 0;
}