summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-23 09:20:28 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-23 09:40:06 +0100
commit9f06e4bc3a56806061f759770f758ad3c7ddf09c (patch)
tree73a4d0ea7366fb7b38b80743f5b59f3f3a5b7085 /tools
parent03ba74098044e5573e56c73f2345b4bcdddb1a39 (diff)
coverity#708545 Uninitialized scalar field
Change-Id: I07bbda38cc030212e27505b92ccb449ba0c5c76b
Diffstat (limited to 'tools')
-rw-r--r--tools/source/generic/bigint.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/source/generic/bigint.cxx b/tools/source/generic/bigint.cxx
index e16b42cc6713..07f1806e5bd1 100644
--- a/tools/source/generic/bigint.cxx
+++ b/tools/source/generic/bigint.cxx
@@ -556,6 +556,7 @@ BigInt::BigInt( double nValue )
}
BigInt::BigInt( sal_uInt32 nValue )
+ : nVal(0)
{
bIsSet = true;
if ( nValue & 0x80000000UL )