coverity#708543 Uninitialized scalar field
Change-Id: I7099e15a6526c4fe01a220422bb91d9fd70abc51
This commit is contained in:
parent
f2ac8d6116
commit
8ff3dbb1c4
@ -472,6 +472,8 @@ bool BigInt::ABS_IsLess( const BigInt& rB ) const
|
||||
}
|
||||
|
||||
BigInt::BigInt( const BigInt& rBigInt )
|
||||
: nLen(0)
|
||||
, bIsNeg(false)
|
||||
{
|
||||
if ( rBigInt.bIsBig )
|
||||
memcpy( (void*)this, (const void*)&rBigInt, sizeof( BigInt ) );
|
||||
|
Loading…
x
Reference in New Issue
Block a user