diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-23 09:20:00 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-23 09:40:05 +0100 |
commit | 03ba74098044e5573e56c73f2345b4bcdddb1a39 (patch) | |
tree | a95283aa8de62827db7d7d52b05958630088dd57 /tools/source | |
parent | 8ff3dbb1c44467d9b71d22b78efa71f253f93cfd (diff) |
coverity#708544 Uninitialized scalar field
Change-Id: I51c3dba9970049acbef4523de3cc968b2df1b408
Diffstat (limited to 'tools/source')
-rw-r--r-- | tools/source/generic/bigint.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tools/source/generic/bigint.cxx b/tools/source/generic/bigint.cxx index 280a62acfeff..e16b42cc6713 100644 --- a/tools/source/generic/bigint.cxx +++ b/tools/source/generic/bigint.cxx @@ -513,6 +513,7 @@ BigInt::BigInt( const OUString& rString ) } BigInt::BigInt( double nValue ) + : nVal(0) { bIsSet = true; |