[Bug 214690] New: eog always crashes on exit
https://bugzilla.novell.com/show_bug.cgi?id=214690 Summary: eog always crashes on exit Product: openSUSE 10.2 Version: Alpha 5 plus Platform: x86 OS/Version: Linux Status: NEW Severity: Normal Priority: P5 - None Component: GNOME AssignedTo: bnc-team-gnome@forge.provo.novell.com ReportedBy: andreas.hanke@gmx-topmail.de QAContact: qa@suse.de eog-2.16.1-7 always crashes on exit for me. Backtrace will follow. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=214690 ------- Comment #1 from andreas.hanke@gmx-topmail.de 2006-10-24 10:42 MST ------- Created an attachment (id=102462) --> (https://bugzilla.novell.com/attachment.cgi?id=102462&action=view) Backtrace -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=214690 ------- Comment #2 from andreas.hanke@gmx-topmail.de 2006-10-24 10:55 MST ------- Created an attachment (id=102463) --> (https://bugzilla.novell.com/attachment.cgi?id=102463&action=view) Crashing image -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=214690 andreas.hanke@gmx-topmail.de changed: What |Removed |Added ---------------------------------------------------------------------------- Summary|eog always crashes on exit |eog crashes on exit on some JPEG files ------- Comment #3 from andreas.hanke@gmx-topmail.de 2006-10-24 10:59 MST ------- Adjusting summary because it doesn't always crash (only on JPEGs from this specific camera). -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=214690 jpr@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |meissner@novell.com Status|NEW |NEEDINFO Info Provider| |andreas.hanke@gmx-topmail.de ------- Comment #4 from jpr@novell.com 2006-10-26 11:01 MST ------- Is the image supposed to be all black? Could it be http://bugzilla.gnome.org/show_bug.cgi?id=354106 ? CC'ing libexif maintainer in case he has any ideas. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=214690 andreas.hanke@gmx-topmail.de changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEEDINFO |ASSIGNED Info Provider|andreas.hanke@gmx-topmail.de| ------- Comment #5 from andreas.hanke@gmx-topmail.de 2006-10-26 11:39 MST ------- Yes, the image is all black. It happens with all images from this specific 'camera', that was just an example because I didn't have another non-private sample at hand. Maybe it's something with the EXIF metadata because I've deleted all EXIF information from the file and cannot make it crash any more (but with the unmodified image, it's still crashing). -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=214690 meissner@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|bnc-team- |meissner@novell.com |gnome@forge.provo.novell.com| Status|ASSIGNED |NEW ------- Comment #6 from meissner@novell.com 2006-10-26 14:18 MST ------- abort on Heap corruption in libexif.. not good. likely libexif fault :/ -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=214690 meissner@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|meissner@novell.com |bnc-team-gnome@forge.provo.novell.com ------- Comment #7 from meissner@novell.com 2006-10-27 05:38 MST ------- its actual an EOG bug. entry = exif_content_get_entry (priv->exif->ifd [EXIF_IFD_EXIF], EXIF_TAG_PIXEL_X_DIMENSION); if (entry != NULL && (priv->width >= 0)) { exif_set_long (entry->data, bo, priv->width); } entry = exif_content_get_entry (priv->exif->ifd [EXIF_IFD_EXIF], EXIF_TAG_PIXEL_Y_DIMENSION); if (entry != NULL && (priv->height >= 0)) { exif_set_long (entry->data, bo, priv->height); } The entry is only a "short" (2 byte), so you are overwriting 2 bytes of data. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=214690 ------- Comment #8 from meissner@novell.com 2006-10-27 05:40 MST ------- Created an attachment (id=102808) --> (https://bugzilla.novell.com/attachment.cgi?id=102808&action=view) eog-pixeldim.patch Patch I used. Can you submit it to GNOME CVS? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=214690 jpr@novell.com changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|bnc-team- |maw@novell.com |gnome@forge.provo.novell.com| -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=214690 ------- Comment #9 from jpr@novell.com 2007-02-12 12:15 MST ------- For submission to 10.3 - Marcus you think it needs a 10.2 maintenance update as well? -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=214690 ------- Comment #10 from andreas.hanke@gmx-topmail.de 2007-02-12 12:22 MST ------- This patch is already in autobuild (even in 10.2 actually). What Marcus asked for is if someone can submit it upstream. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug, or are watching someone who is.
https://bugzilla.novell.com/show_bug.cgi?id=214690#c11 Michael Wolf <maw@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|NEW |RESOLVED Resolution| |FIXED --- Comment #11 from Michael Wolf <maw@novell.com> 2007-06-18 14:51:24 MST --- I've filed it upstream (Marcus' patch isn't in 2.18.2 or trunk): http://bugzilla.gnome.org/show_bug.cgi?id=448913 -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug. ---
participants (1)
-
bugzilla_noreply@novell.com