diff options
Diffstat (limited to 'e-util/e-popup.c')
-rw-r--r-- | e-util/e-popup.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/e-util/e-popup.c b/e-util/e-popup.c index 6ce73ab2db..14bbfc6e9b 100644 --- a/e-util/e-popup.c +++ b/e-util/e-popup.c @@ -726,6 +726,11 @@ emph_construct_menu(EPluginHook *eph, xmlNodePtr root) menu->target_type = map->id; menu->id = e_plugin_xml_prop(root, "id"); + if (menu->id == NULL) { + g_warning("Plugin '%s' missing 'id' field in popup for '%s'\n", eph->plugin->name, + ((EPluginHookClass *)G_OBJECT_GET_CLASS(eph))->id); + goto error; + } node = root->children; while (node) { if (0 == strcmp(node->name, "item")) { |