GNOME Bugzilla – Bug 151053
GIF loader crashes when loading valid GIF file
Last modified: 2004-08-25 22:34:42 UTC
Trying to load GIFs that are screenshots created under OS/2. The GIF files load in Windows XP, Adobe PS, etc., but cause Gimp's GIF load function to crash: (gimp-2.0.exe:2220): LibGimpBase-WARNING **: gimp-2.0.exe: wire_read(): error I have a sample GIF but nowhere to put it.
Created attachment 30944 [details] Sample file which crashes GIF loader
The problem is that in this gif file, the logical screen is bogus (0x0), which is what the gifload plugin uses as width and height for gimp_image_new. We should make the plugin workaround this sort of thing.
Fixed in both HEAD and stable branch: 2004-08-25 Manish Singh <yosh@gimp.org> * plug-ins/common/gifload.c: Guard against bogus logical screen dimensions. Fixes bug #151053.