After an evaluation, GNOME has moved from Bugzilla to GitLab. Learn more about GitLab.
No new issues can be reported in GNOME Bugzilla anymore.
To report an issue in a GNOME project, go to GNOME GitLab.
Do not go to GNOME Gitlab for: Bluefish, Doxygen, GnuCash, GStreamer, java-gnome, LDTP, NetworkManager, Tomboy.
Bug 103774 - gdk_pixbuf_new_from_xpm_data crashes when loader not found
gdk_pixbuf_new_from_xpm_data crashes when loader not found
Status: RESOLVED DUPLICATE of bug 102222
Product: gdk-pixbuf
Classification: Platform
Component: general
git master
Other All
: Normal critical
: ---
Assigned To: gtk-bugs
gtk-bugs
Depends on:
Blocks:
 
 
Reported: 2003-01-17 20:38 UTC by hnridder
Modified: 2010-07-10 04:06 UTC
See Also:
GNOME target: ---
GNOME version: ---



Description hnridder 2003-01-17 20:38:55 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) {
Comment 1 Matthias Clasen 2003-01-17 22:30:10 UTC

*** This bug has been marked as a duplicate of 102222 ***