File: gstevent.override
Function: _wrap_gst_event_parse_seek
Error: ob_refcnt of new ref from call through function pointer is 1 too high
115 static PyObject *
116 _wrap_gst_event_parse_seek (PyGstMiniObject *self)
117 {
118 	gdouble	        rate;
119 	GstFormat	format;
120 	GstSeekFlags	flags;
121 	GstSeekType	cur_type;
122 	gint64		cur;
123 	GstSeekType	stop_type;
124 	gint64		stop;
125 	
126 	if (GST_EVENT_TYPE(self->obj) != GST_EVENT_SEEK) {
when treating unknown struct GstMiniObject * from gstevent.override:126 as non-NULL
when taking False path
127 		PyErr_SetString(PyExc_TypeError, "Event is not an 'Seek' event");
128 		return NULL;
129 	}
130 
131 	gst_event_parse_seek (GST_EVENT(self->obj), &rate, &format, &flags,
132 			      &cur_type, &cur, &stop_type, &stop);
133 	
134 	return Py_BuildValue("(dOOOLOL)",
when call succeeds
when call succeeds
when call succeeds
when call succeeds
when Py_BuildValue() succeeds
new ref from call through function pointer allocated at: 	return Py_BuildValue("(dOOOLOL)",
ob_refcnt is now refs: 1 + N where N >= 0
ob_refcnt is now refs: 1 + N where N >= 1
135 			     rate,
136 			     pyg_enum_from_gtype (GST_TYPE_FORMAT, format),
137 			     pyg_flags_from_gtype (GST_TYPE_SEEK_FLAGS, flags),
138 			     pyg_enum_from_gtype (GST_TYPE_SEEK_TYPE, cur_type),
139 			     cur,
140 			     pyg_enum_from_gtype (GST_TYPE_SEEK_TYPE, stop_type),
when treating unknown struct _PyGObject_Functions * from /usr/include/pygtk-2.0/pygobject.h:207 as non-NULL
141 			     stop);
142 }
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 35 similar trace(s) to this