poppler: upgrade to 25.04.0

After 032d035220702523cf10d924fd436c9e6c83d24c
"Enforce error checking on stream::reset" the return from reset
has to be checked, otherwise it fails with
error: ignoring return value of ‘bool ImageStream::reset()’, declared with attribute ‘nodiscard’ [-Werror=unused-result]

Downloaded from https://poppler.freedesktop.org/poppler-25.04.0.tar.xz

Change-Id: I5c6022b11c307f4293e4b2ea566e811053e3ab6f
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/183632
Tested-by: Jenkins
Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org>
This commit is contained in:
Xisco Fauli
2025-04-02 16:27:00 +02:00
parent dc6442d445
commit 4f13305178
4 changed files with 22 additions and 12 deletions

View File

@@ -578,8 +578,8 @@ LIBTIFF_TARBALL := tiff-4.7.0.tar.xz
# three static lines
# so that git cherry-pick
# will not run into conflicts
POPPLER_SHA256SUM := 21234cb2a9647d73c752ce4031e65a79d11a511a835f2798284c2497b8701dee
POPPLER_TARBALL := poppler-25.02.0.tar.xz
POPPLER_SHA256SUM := b010c596dce127fba88532fd2f1043e55ea30601767952d0f2c0a80e7dc0da3d
POPPLER_TARBALL := poppler-25.04.0.tar.xz
POPPLER_DATA_SHA256SUM := c835b640a40ce357e1b83666aabd95edffa24ddddd49b8daff63adb851cdab74
POPPLER_DATA_TARBALL := poppler-data-0.4.12.tar.gz
# three static lines

View File

@@ -311,8 +311,8 @@ In file included from /opt/rh/gcc-toolset-12/root/usr/lib/gcc/x86_64-redhat-linu
}
lines.push_back(std::move(words));
@@ -5456,7 +5460,11 @@
for (word = rawWords; word; word = word->next) {
@@ -5385,7 +5385,11 @@
for (TextWord *word = rawWords; word; word = word->next) {
s.clear();
uText.resize(word->len());
+#ifndef __clang__

View File

@@ -231,7 +231,8 @@ static void writeJpeg_( OutputBuffer& o_rOutputBuf, Stream* str )
#else
str = ((DCTStream *)str)->getRawStream();
#endif
str->reset();
if (!str->reset())
return;
o_rOutputBuf.clear();
ExtractJpegData(str, o_rOutputBuf);
@@ -267,7 +268,8 @@ static void writePbm_(OutputBuffer& o_rOutputBuf, Stream* str, int width, int he
o_rOutputBuf.resize(header_size);
// initialize stream
str->reset();
if (!str->reset())
return;
// copy the raw stream
if( bInvert )
@@ -324,7 +326,8 @@ static void writePpm_( OutputBuffer& o_rOutputBuf,
width,
colorMap->getNumPixelComps(),
colorMap->getBits()));
imgStr->reset();
if (!imgStr->reset())
return;
for( int y=0; y<height; ++y)
{

View File

@@ -214,7 +214,8 @@ void PngHelper::createPng( OutputBuffer& o_rOutputBuf,
int nLineSize = (width + 7)/8;
aScanlines.reserve( nLineSize * height + height );
str->reset();
if (!str->reset())
return;
for( int y = 0; y < height; y++ )
{
// determine filter type (none) for this scanline
@@ -252,7 +253,8 @@ void PngHelper::createPng( OutputBuffer& o_rOutputBuf,
width,
colorMap->getNumPixelComps(),
colorMap->getBits()));
imgStr->reset();
if (!imgStr->reset())
return;
// create scan line data buffer
OutputBuffer aScanlines;
@@ -289,7 +291,9 @@ void PngHelper::createPng( OutputBuffer& o_rOutputBuf,
maskColorMap->getNumPixelComps(),
maskColorMap->getBits()));
imgStrMask->reset();
if (!imgStrMask->reset())
return;
for( int y = 0; y < maskHeight; ++y )
{
pm = imgStrMask->getLine();
@@ -337,7 +341,8 @@ void PngHelper::createPng( OutputBuffer& o_rOutputBuf,
width,
colorMap->getNumPixelComps(),
colorMap->getBits()));
imgStr->reset();
if (!imgStr->reset())
return;
// create scan line data buffer
OutputBuffer aScanlines;
@@ -371,7 +376,9 @@ void PngHelper::createPng( OutputBuffer& o_rOutputBuf,
std::unique_ptr<ImageStream> imgStrMask(
new ImageStream(maskStr, maskWidth, 1, 1));
imgStrMask->reset();
if (!imgStrMask->reset())
return;
for( int y = 0; y < maskHeight; ++y )
{
for( int x = 0; x < maskWidth; ++x )