Fix a leak described in issue #11205

This commit is contained in:
Dan Mašek 2018-04-03 03:02:21 +02:00
parent 6ffc48769a
commit eae3ed0c08

View File

@ -1584,6 +1584,8 @@ static void OnChange(int pos, void *param)
PyObject *r = PyObject_Call(PyTuple_GetItem(o, 0), args, NULL);
if (r == NULL)
PyErr_Print();
else
Py_DECREF(r);
Py_DECREF(args);
PyGILState_Release(gstate);
}
@ -1626,6 +1628,8 @@ static void OnButtonChange(int state, void *param)
PyObject *r = PyObject_Call(PyTuple_GetItem(o, 0), args, NULL);
if (r == NULL)
PyErr_Print();
else
Py_DECREF(r);
Py_DECREF(args);
PyGILState_Release(gstate);
}