coverity#708543 Uninitialized scalar field

Change-Id: I7099e15a6526c4fe01a220422bb91d9fd70abc51
This commit is contained in:
Caolán McNamara 2014-04-23 09:19:25 +01:00
parent f2ac8d6116
commit 8ff3dbb1c4

View File

@ -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 ) );