File: foldertype.c
Function: Folder_get_identifier
Error: returning (PyObject*)NULL without setting an exception
117 static PyObject* Folder_get_identifier(clawsmail_FolderObject *self, PyObject *args)
118 {
119   PyObject *obj;
120   gchar *id;
121   if(!self->folderitem)
122     return NULL;
when treating unknown struct FolderItem * from foldertype.c:122 as NULL
taking True path
123   id = folder_item_get_identifier(self->folderitem);
124   obj = Py_BuildValue("s", id);
125   g_free(id);
126   return obj;
127 }
128 
returning (PyObject*)NULL without setting an exception