File: ./gst.override
Function: _wrap_gst_type_find_factory_get_list
Error: calling PyList_SetItem with NULL as argument 1 (py_list) at ./gst.override:921
908 static PyObject *
909 _wrap_gst_type_find_factory_get_list (PyObject *self)
910 {
911     GList	*l, *list;
912     PyObject	*py_list;
913     int		i = 0;
914 
915     list = gst_type_find_factory_get_list ();
916 
917     py_list = PyList_New(g_list_length(list));
when PyList_New() fails
918     for (l = list; l ; l = g_list_next(l), i++) {
when treating unknown struct GList * from ./gst.override:915 as non-NULL
taking True path
919 	GstTypeFindFactory *fact = (GstTypeFindFactory*) l->data;
920 
921 	PyList_SetItem(py_list, i,
when call succeeds
calling PyList_SetItem with NULL as argument 1 (py_list) at ./gst.override:921
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
922 		       pygobject_new (G_OBJECT (fact)));
when treating unknown struct _PyGObject_Functions * from /usr/include/pygtk-2.0/pygobject.h:207 as non-NULL
923     }
924     g_list_free (list);
925 
926     return py_list;
927 }