File: gstquery.override
Function: _wrap_gst_query_parse_latency
Error: ob_refcnt of PyBool_FromLong is 1 too high
228 static PyObject *
229 _wrap_gst_query_parse_latency (PyGstMiniObject * self)
230 {
231 	gboolean islive;
232 	GstClockTime	minlat, maxlat;
233 
234      if (GST_QUERY_TYPE (self->obj) != GST_QUERY_LATENCY) {
when treating unknown struct GstMiniObject * from gstquery.override:234 as non-NULL
when taking False path
235 	  PyErr_SetString(PyExc_TypeError, "Query is not a 'latency' query");
236 	  return NULL;
237      }
238      
239      gst_query_parse_latency (GST_QUERY (self->obj), &islive, &minlat, &maxlat);
240      
241      return Py_BuildValue("(OKK)",
PyBool_FromLong() returns
when Py_BuildValue() succeeds
PyBool_FromLong allocated at:      return Py_BuildValue("(OKK)",
ob_refcnt is now refs: 1 + N where N >= 0
ob_refcnt is now refs: 1 + N where N >= 1
242 			  PyBool_FromLong(islive),
243 			  minlat, maxlat);
244 }
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
found 1 similar trace(s) to this