Kaydet (Commit) be06f343 authored tarafından Stephan Bergmann's avatar Stephan Bergmann

Some more loplugin:cstylecast: xmlscript

Change-Id: I6c13ff51c32e0fded35d8f9124981fee1cce80ad
üst 2880dfe3
...@@ -122,8 +122,8 @@ void BSeqOutputStream::writeBytes( Sequence< sal_Int8 > const & rData ) ...@@ -122,8 +122,8 @@ void BSeqOutputStream::writeBytes( Sequence< sal_Int8 > const & rData )
{ {
sal_Int32 nPos = _seq->getLength(); sal_Int32 nPos = _seq->getLength();
_seq->realloc( nPos + rData.getLength() ); _seq->realloc( nPos + rData.getLength() );
memcpy( (char *)_seq->getArray() + nPos, memcpy( _seq->getArray() + nPos,
(char const *)rData.getConstArray(), rData.getConstArray(),
rData.getLength() ); rData.getLength() );
} }
void BSeqOutputStream::flush() void BSeqOutputStream::flush()
......
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