diff --git a/tools/source/generic/bigint.cxx b/tools/source/generic/bigint.cxx index 26117ce67033..280a62acfeff 100644 --- a/tools/source/generic/bigint.cxx +++ b/tools/source/generic/bigint.cxx @@ -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 ) );