File: gstbase.override
Function: _wrap_gst_base_sink_query_latency
Error: ob_refcnt of PyBool_FromLong is 1 too high
786 static PyObject *
787 _wrap_gst_base_sink_query_latency (PyGObject *self)
788 {
789     gboolean res, live = FALSE, upstream_live = FALSE;
790     GstClockTime minlat = GST_CLOCK_TIME_NONE, maxlat = GST_CLOCK_TIME_NONE;
791 
792     res = gst_base_sink_query_latency (GST_BASE_SINK (self->obj), &live, &upstream_live,
793 				       &minlat, &maxlat);
794     return Py_BuildValue("(OOOKK)",
PyBool_FromLong() returns
PyBool_FromLong() returns
PyBool_FromLong() returns
when Py_BuildValue() succeeds
returning
ob_refcnt of PyBool_FromLong is 1 too high
was expecting final ob_refcnt to be N + 0 (for some unknown N)
but final ob_refcnt is N + 1
PyBool_FromLong allocated at:     return Py_BuildValue("(OOOKK)",
found 5 similar trace(s) to this
ob_refcnt is now refs: 1 + N where N >= 0
ob_refcnt is now refs: 1 + N where N >= 1
795 			 PyBool_FromLong(res),
796 			 PyBool_FromLong(live),
797 			 PyBool_FromLong(upstream_live),
798 			 minlat, maxlat);
799 }