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