File: clawsmailmodule.c
Function: get_mainwindow_action_group
Error: returning (PyObject*)NULL without setting an exception
68 static PyObject *get_mainwindow_action_group(PyObject *self, PyObject *args)
69 {
70   MainWindow *mainwin;
71 
72   mainwin =  mainwindow_get_mainwindow();
73   if(mainwin)
74     return get_gobj_from_address(mainwin->action_group);
when treating unknown struct MainWindow * from clawsmailmodule.c:73 as NULL
taking False path
75   else
76     return NULL;
77 }
78 
returning (PyObject*)NULL without setting an exception