GNOME Bugzilla – Bug 641384
Make plugin loading failure fatal
Last modified: 2011-02-03 19:31:17 UTC
If a plugin was explicitly specified, falling back to the default silently is bad; a manager component like gnome-session can do a better job of handling this scenario.
Created attachment 180008 [details] [review] Make plugin loading failure fatal
Review of attachment 180008 [details] [review]: ::: src/compositor/meta-plugin-manager.c @@ +288,3 @@ + */ + g_error ("Unable to load plugin module [%s]: %s", + path, g_module_error()); This doesn't seem like a g_error() to me - passing bad input on the command line shouldn't produce a g_error() (g_error() == bug that will be reported upstream if everything works correctly...it's a form of abort().) Should g_printerr() and exit, I think.
Attachment 180008 [details] pushed as 1133a4f - Make plugin loading failure fatal