From 2696a2da53c7a8d8d8ae3de01e45be1439323050 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Fri, 11 Apr 2014 13:24:33 +0100 Subject: coverity#984163 Uninitialized scalar field Change-Id: I3ad2a8d22ef274a63de5c01cc74c7d46f947f861 --- tools/source/generic/bigint.cxx | 1 + 1 file changed, 1 insertion(+) (limited to 'tools') 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; -- cgit