]> granicus.if.org Git - python/commitdiff
rearrange methodcaller_new so that the main error case does not cause uninitialized...
authorBenjamin Peterson <benjamin@python.org>
Wed, 17 Aug 2016 06:35:35 +0000 (23:35 -0700)
committerBenjamin Peterson <benjamin@python.org>
Wed, 17 Aug 2016 06:35:35 +0000 (23:35 -0700)
Misc/NEWS
Modules/operator.c

index 8c7acaf6482f53c9be9d0afb6582e60494560e79..a38d8beeb1d812be4b7e3ac4c2cf21353e36367d 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -29,6 +29,8 @@ Core and Builtins
 Library
 -------
 
+- Issue #27783: Fix possible usage of uninitialized memory in operator.methodcaller.
+
 - Issue #27774: Fix possible Py_DECREF on unowned object in _sre.
 
 - Issue #27760: Fix possible integer overflow in binascii.b2a_qp.
index 5156b6b32d5b7fe581c3c3631dea86bc4ae95b29..d6443bf2b2541da75b0cc4ddc73be3a09f5d45f2 100644 (file)
@@ -776,7 +776,7 @@ static PyObject *
 methodcaller_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
 {
     methodcallerobject *mc;
-    PyObject *name, *newargs;
+    PyObject *name;
 
     if (PyTuple_GET_SIZE(args) < 1) {
         PyErr_SetString(PyExc_TypeError, "methodcaller needs at least "
@@ -789,13 +789,6 @@ methodcaller_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
     if (mc == NULL)
         return NULL;
 
-    newargs = PyTuple_GetSlice(args, 1, PyTuple_GET_SIZE(args));
-    if (newargs == NULL) {
-        Py_DECREF(mc);
-        return NULL;
-    }
-    mc->args = newargs;
-
     name = PyTuple_GET_ITEM(args, 0);
     Py_INCREF(name);
     mc->name = name;
@@ -803,6 +796,12 @@ methodcaller_new(PyTypeObject *type, PyObject *args, PyObject *kwds)
     Py_XINCREF(kwds);
     mc->kwds = kwds;
 
+    mc->args = PyTuple_GetSlice(args, 1, PyTuple_GET_SIZE(args));
+    if (mc->args == NULL) {
+        Py_DECREF(mc);
+        return NULL;
+    }
+
     PyObject_GC_Track(mc);
     return (PyObject *)mc;
 }