[poppler] poppler/SplashOutputDev.cc
Albert Astals Cid
aacid at kemper.freedesktop.org
Thu Sep 24 16:01:01 PDT 2015
poppler/SplashOutputDev.cc | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
New commits:
commit 0a33e3a740a1dbe57023d0a51077689d29d79def
Author: Albert Astals Cid <aacid at kde.org>
Date: Fri Sep 25 01:00:32 2015 +0200
Fix the fix of the fix for SplashOutputDev::beginTransparencyGroup and malformed files
diff --git a/poppler/SplashOutputDev.cc b/poppler/SplashOutputDev.cc
index fbf4d08..097260b 100644
--- a/poppler/SplashOutputDev.cc
+++ b/poppler/SplashOutputDev.cc
@@ -4099,8 +4099,7 @@ void SplashOutputDev::beginTransparencyGroup(GfxState *state, double *bbox,
if (!bitmap->getDataPtr()) {
delete bitmap;
w = h = 1;
- bitmap = new SplashBitmap(w, h, bitmapRowPad, colorMode, gTrue,
- bitmapTopDown, bitmap->getSeparationList());
+ bitmap = new SplashBitmap(w, h, bitmapRowPad, colorMode, gTrue, bitmapTopDown);
}
splash = new Splash(bitmap, vectorAntialias,
transpGroup->origSplash->getScreen());
More information about the poppler
mailing list