summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolan.mcnamara@collabora.com>2024-06-16 17:11:38 +0100
committerCaolán McNamara <caolan.mcnamara@collabora.com>2024-06-16 19:34:21 +0200
commitf1a1f1e9aaeefacc49c14551e235a711387ab5dc (patch)
treef178245ae95a2b3c172611c1a4c126cc48860256
parentc003f792183b63ca3f282a6fd53ceae0167f2a5e (diff)
cid#1603803 Unchecked return value
Change-Id: Id7f4d7a27720856c5e53dab4333a8ecf370004dd Reviewed-on: https://gerrit.libreoffice.org/c/core/+/168959 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
-rw-r--r--sc/source/ui/docshell/impex.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/docshell/impex.cxx b/sc/source/ui/docshell/impex.cxx
index 9957e97bfbd0..42b281e2aadf 100644
--- a/sc/source/ui/docshell/impex.cxx
+++ b/sc/source/ui/docshell/impex.cxx
@@ -2066,7 +2066,7 @@ bool ScImportExport::Sylk2Doc( SvStream& rStrm )
for( ;; )
{
//! allow unicode
- rStrm.ReadLine( aByteLine );
+ (void)rStrm.ReadLine( aByteLine );
aLine = OStringToOUString(aByteLine, rStrm.GetStreamCharSet());
if( rStrm.eof() )
break;