File: gstbase.override
Function: _wrap_gst_base_src_query_latency
Error: ob_refcnt of PyBool_FromLong is 1 too high
802 static PyObject *
803 _wrap_gst_base_src_query_latency (PyGObject *self)
804 {
805     gboolean res, live = FALSE;
806     GstClockTime minlat = GST_CLOCK_TIME_NONE, maxlat = GST_CLOCK_TIME_NONE;
807 
808     res = gst_base_src_query_latency (GST_BASE_SRC (self->obj), &live,
809 				      &minlat, &maxlat);
810     return Py_BuildValue("(OOKK)",
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("(OOKK)",
found 3 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
811 			 PyBool_FromLong(res),
812 			 PyBool_FromLong(live),
813 			 minlat, maxlat);
814 }