coverity#708205 Uninitialized scalar field

Change-Id: I9facdfaefcfa79c56b1db9e62b861cf425d5726f
This commit is contained in:
Caolán McNamara
2014-04-22 09:08:07 +01:00
parent 53d230c9e4
commit be48b0eb62

View File

@@ -59,7 +59,16 @@ private:
public:
BigInt();
BigInt( short nVal );
BigInt(short nValue)
: nVal(nValue)
, nLen(0)
, bIsNeg(false)
, bIsBig(false)
, bIsSet(true)
{
}
BigInt(long nValue)
: nVal(nValue)
, nLen(0)
@@ -142,13 +151,6 @@ inline BigInt::BigInt()
nVal = 0;
}
inline BigInt::BigInt( short nValue )
{
bIsSet = true;
bIsBig = false;
nVal = nValue;
}
inline BigInt::BigInt( sal_uInt16 nValue )
{
bIsSet = true;