File: gstquery.override
Function: _wrap_gst_query_parse_duration
Error: ob_refcnt of new ref from call through function pointer is 1 too high
46 static PyObject *
47 _wrap_gst_query_parse_duration (PyGstMiniObject *self)
48 {
49 	GstFormat	format;
50 	gint64		cur;
51 
52 	if (GST_QUERY_TYPE(self->obj) != GST_QUERY_DURATION) {
when treating unknown struct GstMiniObject * from gstquery.override:52 as non-NULL
when taking False path
53 		PyErr_SetString(PyExc_TypeError, "Query is not a 'Duration' query");
54 		return NULL;
55 	}
56 	
57 	gst_query_parse_duration (GST_QUERY(self->obj), &format, &cur);
58 	
59 	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
60 			     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
61 			     cur);
62 }
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