File: gstmessage.override
Function: _wrap_gst_message_parse_stream_status
Error: ob_refcnt of new ref from call through function pointer is 1 too high
403 static PyObject *
404 _wrap_gst_message_parse_stream_status (PyGstMiniObject *self)
405 {
406 	GstStreamStatusType type;
407 	GstElement *owner;
408 	
409 	
410 	if (GST_MESSAGE_TYPE(self->obj) != GST_MESSAGE_STREAM_STATUS) {
when treating unknown struct GstMiniObject * from gstmessage.override:410 as non-NULL
when taking False path
411 		PyErr_SetString(PyExc_TypeError, "Message is not an 'stream-status' message");
412 		return NULL;
413 	}
414 
415 	gst_message_parse_stream_status (GST_MESSAGE (self->obj), &type, &owner);
416 
417 	return Py_BuildValue("OO",
when call succeeds
when call succeeds
when Py_BuildValue() succeeds
new ref from call through function pointer allocated at: 	return Py_BuildValue("OO",
ob_refcnt is now refs: 1 + N where N >= 0
ob_refcnt is now refs: 1 + N where N >= 1
418 			     pyg_enum_from_gtype (GST_TYPE_STREAM_STATUS_TYPE, type),
419 			     pygobject_new((GObject*) owner));
when treating unknown struct _PyGObject_Functions * from /usr/include/pygtk-2.0/pygobject.h:207 as non-NULL
420 }
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 5 similar trace(s) to this