GNOME Bugzilla – Bug 574256
gststructure.override leaks py_value
Last modified: 2009-03-05 12:43:21 UTC
246 py_value = pygst_value_as_pyobject(value, FALSE); ... 266 return retval; 267 } py_value is never freed.
This is not a leak. We give py_value to PyEval_CallFunction. In the arguments ("(NNO)") the 'N' means that we don't increment the refcount, but give the reference to the arguments that will be built later on.