summaryrefslogtreecommitdiff
path: root/sc/source/filter
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter')
-rw-r--r--sc/source/filter/inc/formel.hxx30
1 files changed, 25 insertions, 5 deletions
diff --git a/sc/source/filter/inc/formel.hxx b/sc/source/filter/inc/formel.hxx
index 433ba0809a94..aa7944161439 100644
--- a/sc/source/filter/inc/formel.hxx
+++ b/sc/source/filter/inc/formel.hxx
@@ -143,31 +143,51 @@ inline void LotusConverterBase::Ignore( const long nSeekRel )
inline void LotusConverterBase::Read( sal_uInt8& nByte )
{
aIn.ReadUChar( nByte );
- nBytesLeft--;
+ if (aIn.good())
+ nBytesLeft--;
+ else
+ {
+ // SvStream::ReadUChar() does not init a single char on failure. This
+ // behaviour is even tested in a unit test.
+ nByte = 0;
+ nBytesLeft = -1; // bail out early
+ }
}
inline void LotusConverterBase::Read( sal_uInt16& nUINT16 )
{
aIn.ReadUInt16( nUINT16 );
- nBytesLeft -= 2;
+ if (aIn.good())
+ nBytesLeft -= 2;
+ else
+ nBytesLeft = -1; // bail out early
}
inline void LotusConverterBase::Read( sal_Int16& nINT16 )
{
aIn.ReadInt16( nINT16 );
- nBytesLeft -= 2;
+ if (aIn.good())
+ nBytesLeft -= 2;
+ else
+ nBytesLeft = -1; // bail out early
}
inline void LotusConverterBase::Read( double& fDouble )
{
aIn.ReadDouble( fDouble );
- nBytesLeft -= 8;
+ if (aIn.good())
+ nBytesLeft -= 8;
+ else
+ nBytesLeft = -1; // bail out early
}
inline void LotusConverterBase::Read( sal_uInt32& nUINT32 )
{
aIn.ReadUInt32( nUINT32 );
- nBytesLeft -= 4;
+ if (aIn.good())
+ nBytesLeft -= 4;
+ else
+ nBytesLeft = -1; // bail out early
}
#endif