diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-11 13:24:33 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-11 14:11:21 +0100 |
commit | 2696a2da53c7a8d8d8ae3de01e45be1439323050 (patch) | |
tree | 772cf9ddeae3fda79eb60b6a2430b3b51b1217b3 /tools | |
parent | 434bc3f6576ffb94b407d62ab5af9dc08b33d059 (diff) |
coverity#984163 Uninitialized scalar field
Change-Id: I3ad2a8d22ef274a63de5c01cc74c7d46f947f861
Diffstat (limited to 'tools')
-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 47fb346a7c34..26117ce67033 100644 --- a/tools/source/generic/bigint.cxx +++ b/tools/source/generic/bigint.cxx @@ -484,6 +484,7 @@ BigInt::BigInt( const BigInt& rBigInt ) } BigInt::BigInt( const OUString& rString ) + : nLen(0) { bIsSet = true; bIsNeg = false; |