diff options
-rw-r--r-- | tools/source/generic/bigint.cxx | 2 |
1 files changed, 2 insertions, 0 deletions
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 ) ); |