File: gstquery.override
Function: _wrap_gst_query_parse_convert
Error: ob_refcnt of new ref from call through function pointer is 1 too high
65 static PyObject *
66 _wrap_gst_query_parse_convert (PyGstMiniObject *self)
67 {
68 	GstFormat	srcformat, destformat;
69 	gint64		srcvalue, destvalue;
70 
71 	if (GST_QUERY_TYPE(self->obj) != GST_QUERY_CONVERT) {
when treating unknown struct GstMiniObject * from gstquery.override:71 as non-NULL
when taking False path
72 		PyErr_SetString(PyExc_TypeError, "Query is not a 'Convert' query");
73 		return NULL;
74 	}
75 
76 	gst_query_parse_convert (GST_QUERY(self->obj), 
77 				 &srcformat, &srcvalue,
78 				 &destformat, &destvalue);
79 	
80 	return Py_BuildValue("(OLOL)",
when call succeeds
when call succeeds
when Py_BuildValue() succeeds
new ref from call through function pointer allocated at: 	return Py_BuildValue("(OLOL)",
ob_refcnt is now refs: 1 + N where N >= 0
ob_refcnt is now refs: 1 + N where N >= 1
81 			     pyg_enum_from_gtype(GST_TYPE_FORMAT, srcformat),
82 			     srcvalue,
83 			     pyg_enum_from_gtype(GST_TYPE_FORMAT, destformat),
when treating unknown struct _PyGObject_Functions * from /usr/include/pygtk-2.0/pygobject.h:207 as non-NULL
84 			     destvalue);
85 }
ob_refcnt of new ref from call through function pointer is 1 too high
was expecting final ob_refcnt to be N + 0 (for some unknown N)
but final ob_refcnt is N + 1
found 5 similar trace(s) to this