cid#1608255 silence Overflowed constant

Change-Id: I3b518782a82bd1f066a36c87d1a52e5e44e4abda
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/175259
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
This commit is contained in:
Caolán McNamara 2024-09-25 09:13:23 +01:00
parent 729716c737
commit 70d3278ad4

View file

@ -281,7 +281,7 @@ sal_Int32 Decompression::explode()
// if LENGTH == 2
// D1 = D1 << 2
// read 2 bits -> D2
D1 = D1 << 2;
D1 = (D1 & 0x3fffffff) << 2;
if (0 != ReadBits(2, D2))
break;
}