GNOME Bugzilla – Bug 103774
gdk_pixbuf_new_from_xpm_data crashes when loader not found
Last modified: 2010-07-10 04:06:44 UTC
In gdk_pixbuf_new_from_xpm_data(): GdkPixbufModule *xpm_module = _gdk_pixbuf_get_named_module ("xpm", NULL); if (xpm_module->module == NULL) { _gdk_pixbuf_get_named_module() returns NULL upon failure. The second line should read: if (xpm_module == NULL) {
*** This bug has been marked as a duplicate of 102222 ***