cid#1603804 Unchecked return value

Change-Id: I40d3a2dba67a3e0f7d65964396c6fa5b875a287c
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/168957
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
This commit is contained in:
Caolán McNamara 2024-06-16 17:08:36 +01:00
parent 402368f7ed
commit 1ad74a0212

View file

@ -130,7 +130,7 @@ sal_Int16 ReadDicVersion( SvStream& rStream, LanguageType &nLng, bool &bNeg, OUS
nDicVersion = DIC_VERSION_7;
// 1st skip magic / header line
rStream.ReadLine(aLine);
(void)rStream.ReadLine(aLine);
// 2nd line: language all | en-US | pt-BR ...
while ((bSuccess = rStream.ReadLine(aLine)))