diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-05-10 14:14:15 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-05-10 21:12:57 +0100 |
commit | b34267cea16020a80b2c809e29a84c94b99add04 (patch) | |
tree | 2c37976053b5bd0db3b921b286fb6e5119840b4f /tools | |
parent | 64d1fb5ae94f03f2f470af0407fd257c04a85687 (diff) |
coverity#708545 Uninitialized scalar field
Change-Id: I97efb9c1f3bb6554dfded43129a13f93d1cdd4be
Diffstat (limited to 'tools')
-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 07f1806e5bd1..5298cd9c9c8e 100644 --- a/tools/source/generic/bigint.cxx +++ b/tools/source/generic/bigint.cxx @@ -570,7 +570,9 @@ BigInt::BigInt( sal_uInt32 nValue ) else { bIsBig = false; + bIsNeg = false; nVal = nValue; + nLen = 0; } } |