File: gstpad.override
Function: _wrap_gst_pad_get_internal_links_default
Error: calling PyList_SetItem with NULL as argument 1 (ret) at gstpad.override:1294
1283 static PyObject *
1284 _wrap_gst_pad_get_internal_links_default (PyGObject * self)
1285 {
1286     PyObject    *ret;
1287     GList    *lst, *tmp;
1288     gint i;
1289 
1290     lst = gst_pad_get_internal_links_default (GST_PAD (pygobject_get(self)));
1291 
1292     ret = PyList_New(g_list_length(lst));
when PyList_New() fails
1293     for (tmp = lst, i = 0 ; tmp; tmp = g_list_next(tmp), ++i) {
when treating unknown struct GList * from gstpad.override:1290 as non-NULL
taking True path
1294         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:1294
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
1295     }
1296     g_list_free(lst);
1297     return ret;
1298 }