coverity#1266457 Identical code for different branches
Change-Id: I809ad43ad4541e4dcd5c245b469d30605f9f0d27
This commit is contained in:
@@ -215,10 +215,7 @@ bool SbiBuffer::operator +=( sal_uInt32 n )
|
||||
{
|
||||
sal_uInt16 n1 = static_cast<sal_uInt16>( n & 0xFFFF );
|
||||
sal_uInt16 n2 = static_cast<sal_uInt16>( n >> 16 );
|
||||
if ( operator +=( n1 ) && operator +=( n2 ) )
|
||||
{
|
||||
return true;
|
||||
}
|
||||
operator +=(n1) && operator +=(n2);
|
||||
return true;
|
||||
}
|
||||
else
|
||||
|
Reference in New Issue
Block a user