File: gstquery.override
Function: _wrap_gst_query_parse_buffering_range
Error: ob_refcnt of new ref from call through function pointer is 1 too high
285 static PyObject *
286 _wrap_gst_query_parse_buffering_range (PyGstMiniObject * self)
287 {
288 	GstFormat format;
289 	gint64 start, stop, estimated_total;
290 	
291      if (GST_QUERY_TYPE (self->obj) != GST_QUERY_BUFFERING) {
when treating unknown struct GstMiniObject * from gstquery.override:291 as non-NULL
when taking False path
292 	  PyErr_SetString(PyExc_TypeError, "Query is not a 'buffering' query");
293 	  return NULL;
294      }
295      
296      gst_query_parse_buffering_range (GST_QUERY (self->obj), &format,
297 				      &start, &stop, &estimated_total);
298      return Py_BuildValue("OLLL",
when call succeeds
when Py_BuildValue() succeeds
new ref from call through function pointer allocated at:      return Py_BuildValue("OLLL",
ob_refcnt is now refs: 1 + N where N >= 0
ob_refcnt is now refs: 1 + N where N >= 1
299 			  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
300 			  start, stop, estimated_total);
301 }
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