File: gstquery.override
Function: _wrap_gst_query_parse_position
Error: ob_refcnt of new ref from call through function pointer is 1 too high
27 static PyObject *
28 _wrap_gst_query_parse_position (PyGstMiniObject *self)
29 {
30 	GstFormat	format;
31 	gint64		cur;
32 
33 	if (GST_QUERY_TYPE(self->obj) != GST_QUERY_POSITION) {
when treating unknown struct GstMiniObject * from gstquery.override:33 as non-NULL
when taking False path
34 		PyErr_SetString(PyExc_TypeError, "Query is not a 'Position' query");
35 		return NULL;
36 	}
37 	
38 	gst_query_parse_position (GST_QUERY(self->obj), &format, &cur);
39 	
40 	return Py_BuildValue("(OL)",
when call succeeds
when Py_BuildValue() succeeds
new ref from call through function pointer allocated at: 	return Py_BuildValue("(OL)",
ob_refcnt is now refs: 1 + N where N >= 0
ob_refcnt is now refs: 1 + N where N >= 1
41 			     pyg_enum_from_gtype (GST_TYPE_FORMAT, format),
when treating unknown struct _PyGObject_Functions * from /usr/include/pygtk-2.0/pygobject.h:207 as non-NULL
42 			     cur);
43 }
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 1 similar trace(s) to this