File: gstpad.override
Function: _wrap_gst_pad_get_internal_links
Error: calling PyList_SetItem with NULL as argument 1 (ret) at gstpad.override:1276
1265 static PyObject *
1266 _wrap_gst_pad_get_internal_links (PyGObject * self)
1267 {
1268     PyObject    *ret;
1269     GList    *lst, *tmp;
1270     gint i;
1271 
1272     lst = gst_pad_get_internal_links (GST_PAD (pygobject_get(self)));
1273 
1274     ret = PyList_New(g_list_length(lst));
when PyList_New() fails
1275     for (tmp = lst, i = 0 ; tmp; tmp = g_list_next(tmp), ++i) {
when treating unknown struct GList * from gstpad.override:1272 as non-NULL
taking True path
1276         PyList_SetItem(ret, i, pygobject_new(G_OBJECT(tmp->data)));
when treating unknown struct _PyGObject_Functions * from /usr/include/pygtk-2.0/pygobject.h:207 as non-NULL
when call succeeds
calling PyList_SetItem with NULL as argument 1 (ret) at gstpad.override:1276
PyList_SetItem() invokes Py_TYPE() on the pointer via the PyList_Check() macro, thus accessing (NULL)->ob_type
found 1 similar trace(s) to this
1277     }
1278     g_list_free(lst);
1279     return ret;
1280 }