diff options
-rw-r--r-- | io/source/stm/omark.cxx | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/io/source/stm/omark.cxx b/io/source/stm/omark.cxx index 274084469..4a3912c87 100644 --- a/io/source/stm/omark.cxx +++ b/io/source/stm/omark.cxx @@ -735,10 +735,8 @@ void OMarkableInputStream::skipBytes(sal_Int32 nBytesToSkip) ); // this method is blocking - sal_Int32 nRead; Sequence<sal_Int8> seqDummy( nBytesToSkip ); - - nRead = readBytes( seqDummy , nBytesToSkip ); + readBytes( seqDummy , nBytesToSkip ); } sal_Int32 OMarkableInputStream::available(void) throw (NotConnectedException, RuntimeException) |