[Bug 396634] New: libpoppler crashes viewing pdf with okular/evince, kpdf still works
https://bugzilla.novell.com/show_bug.cgi?id=396634 Summary: libpoppler crashes viewing pdf with okular/evince, kpdf still works Product: openSUSE 11.0 Version: RC 1 Platform: Other OS/Version: Other Status: NEW Severity: Normal Priority: P5 - None Component: GNOME AssignedTo: bnc-team-gnome@forge.provo.novell.com ReportedBy: fm@opensuse.org QAContact: qa@suse.de CC: sbrabec@novell.com Found By: --- I have reported this bug upstream at: https://bugs.freedesktop.org/show_bug.cgi?id=16215 I tried to solve the issue on IRC in #poppler but pinotree said he cannot reproduce the problem with the 0.8 branch. So either there is a patch between 0.8.1 and today or something else. ;) -- 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.
https://bugzilla.novell.com/show_bug.cgi?id=396634 User fm@opensuse.org added comment https://bugzilla.novell.com/show_bug.cgi?id=396634#c1 --- Comment #1 from Felix Möller <fm@opensuse.org> 2008-06-03 14:14:10 MDT --- Stanislav as it got closed upstream, can you backport the relevant patch, do you know which one it is? -- 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.
https://bugzilla.novell.com/show_bug.cgi?id=396634 User sbrabec@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=396634#c2 Stanislav Brabec <sbrabec@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- AssignedTo|bnc-team-gnome@forge.provo.novell.com |sbrabec@novell.com Status|NEW |ASSIGNED --- Comment #2 from Stanislav Brabec <sbrabec@novell.com> 2008-06-04 04:20:11 MDT --- Just trying. -- 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.
https://bugzilla.novell.com/show_bug.cgi?id=396634 User sbrabec@novell.com added comment https://bugzilla.novell.com/show_bug.cgi?id=396634#c3 Stanislav Brabec <sbrabec@novell.com> changed: What |Removed |Added ---------------------------------------------------------------------------- Status|ASSIGNED |RESOLVED Resolution| |FIXED --- Comment #3 from Stanislav Brabec <sbrabec@novell.com> 2008-06-04 05:16:05 MDT --- Upgrading to version 0.8.2, this version means one line code change (see below). And backporting two lines obviously preventing crash from upstream git, branch-0.8. It seems to be sufficient to fix this crash. --- poppler-0.8.1/poppler/Object.h 2008-04-23 19:55:14.000000000 +0200 +++ poppler-0.8.2/poppler/Object.h 2008-04-29 23:46:56.000000000 +0200 @@ -295,7 +295,7 @@ #include "Stream.h" inline GBool Object::streamIs(char *dictType) - { OBJECT_TYPE_CHECK(objStream); stream->getDict()->is(dictType); } + { OBJECT_TYPE_CHECK(objStream); return stream->getDict()->is(dictType); } inline GBool Object::isStream(char *dictType) { return type == objStream && streamIs(dictType); } -- 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