Kaydet (Commit) 1afec5d6 authored tarafından Benjamin Peterson's avatar Benjamin Peterson

plug ref leak

üst 39d43b46
...@@ -1153,14 +1153,17 @@ dict_subscript(PyDictObject *mp, register PyObject *key) ...@@ -1153,14 +1153,17 @@ dict_subscript(PyDictObject *mp, register PyObject *key)
if (v == NULL) { if (v == NULL) {
if (!PyDict_CheckExact(mp)) { if (!PyDict_CheckExact(mp)) {
/* Look up __missing__ method if we're a subclass. */ /* Look up __missing__ method if we're a subclass. */
PyObject *missing; PyObject *missing, *res;
static PyObject *missing_str = NULL; static PyObject *missing_str = NULL;
missing = _PyObject_LookupSpecial((PyObject *)mp, missing = _PyObject_LookupSpecial((PyObject *)mp,
"__missing__", "__missing__",
&missing_str); &missing_str);
if (missing != NULL) if (missing != NULL) {
return PyObject_CallFunctionObjArgs(missing, res = PyObject_CallFunctionObjArgs(missing,
key, NULL); key, NULL);
Py_DECREF(missing);
return res;
}
else if (PyErr_Occurred()) else if (PyErr_Occurred())
return NULL; return NULL;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment