Kaydet (Commit) 52d3e89b authored tarafından Douglas Mencken's avatar Douglas Mencken Kaydeden (comit) Michael Stahl

svl: don't forget about big-endian parts in filerec.cxx

Fixes:
  (build error) filerec.cxx:591: error: no match for 'operator>>'

Change-Id: I412cc9121c50830069e8e71c35dfb4f8ce475357
Reviewed-on: https://gerrit.libreoffice.org/8206Tested-by: 's avatarMichael Stahl <mstahl@redhat.com>
Reviewed-by: 's avatarMichael Stahl <mstahl@redhat.com>
üst 54ce662d
......@@ -588,7 +588,7 @@ bool SfxMultiRecordReader::ReadHeader_Impl()
_pStream->Read( _pContentOfs, sizeof(sal_uInt32)*_nContentCount );
#else
for ( sal_uInt16 n = 0; n < _nContentCount; ++n )
*_pStream >> _pContentOfs[n];
_pStream->ReadUInt32( _pContentOfs[n] );
#endif
_pStream->Seek( nContentPos );
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment