poppler/GfxState.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
New commits: commit a6427ea6df68eb20e1970ddaf4017ba9a04e737a Author: Vincent Le Garrec <[email protected]> Date: Fri Jan 25 07:37:46 2019 +0100 Fix ofz-8438 https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=8438 diff --git a/poppler/GfxState.cc b/poppler/GfxState.cc index 2f515e66..84f28c44 100644 --- a/poppler/GfxState.cc +++ b/poppler/GfxState.cc @@ -33,6 +33,7 @@ // Copyright (C) 2018 Klarälvdalens Datakonsult AB, a KDAB Group company, <[email protected]>. Work sponsored by the LiMux project of the city of Munich // Copyright (C) 2018 Volker Krause <[email protected]> // Copyright (C) 2018, 2019 Adam Reichold <[email protected]> +// Copyright (C) 2019 LE GARREC Vincent <[email protected]> // // To see a description of the changes please see the Changelog file that // came with your tarball or type make ChangeLog if you are building from git @@ -4655,7 +4656,7 @@ GfxShadingBitBuf::~GfxShadingBitBuf() { } bool GfxShadingBitBuf::getBits(int n, unsigned int *val) { - int x; + unsigned int x; if (nBits >= n) { x = (bitBuf >> (nBits - n)) & ((1 << n) - 1); _______________________________________________ poppler mailing list [email protected] https://lists.freedesktop.org/mailman/listinfo/poppler
