File: clawsmailmodule.c
Function: get_mainwindow_ui_manager
Error: returning (PyObject*)NULL without setting an exception
79 static PyObject *get_mainwindow_ui_manager(PyObject *self, PyObject *args)
80 {
81   MainWindow *mainwin;
82 
83   mainwin =  mainwindow_get_mainwindow();
84   if(mainwin)
85     return get_gobj_from_address(mainwin->ui_manager);
when treating unknown struct MainWindow * from clawsmailmodule.c:84 as NULL
taking False path
86   else
87     return NULL;
88 }
89 
returning (PyObject*)NULL without setting an exception