http://bugzilla.novell.com/show_bug.cgi?id=617623 http://bugzilla.novell.com/show_bug.cgi?id=617623#c2 --- Comment #2 from Olaf Hering <olaf@aepfle.de> 2010-06-26 09:20:30 CEST --- Created an attachment (id=371934) --> (http://bugzilla.novell.com/attachment.cgi?id=371934) XPDFCore.cc.patch this patch avoids the crashes for me: --- XPDFCore.cc | 3 +++ 1 file changed, 3 insertions(+) --- xpdf-3.02-poppler.orig/XPDFCore.cc +++ xpdf-3.02-poppler/XPDFCore.cc @@ -1343,8 +1343,11 @@ void XPDFCore::redrawRect(PDFCoreTile *t // draw the document if (tile) { + if (tile->image) XPutImage(display, drawAreaWin, drawAreaGC, tile->image, xSrc, ySrc, xDest, yDest, width, height); + else + error(-1, "tile->image NULL in tile @ %p", tile); // draw the background } else { -- Configure bugmail: http://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.