Kaydet (Commit) 8ff3dbb1 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708543 Uninitialized scalar field

Change-Id: I7099e15a6526c4fe01a220422bb91d9fd70abc51
üst f2ac8d61
......@@ -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 ) );
......
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