From 4a797602fd9a6141e16c5cb5289861cd036b73cd Mon Sep 17 00:00:00 2001 From: Oliver Bolte Date: Thu, 21 Oct 2004 10:51:09 +0000 Subject: INTEGRATION: CWS valgrind57 (1.4.154); FILE MERGED 2004/10/18 13:26:33 dbo 1.4.154.1: #i35713# uninit members --- ucbhelper/source/provider/propertyvalueset.cxx | 15 +++++++++++---- 1 file changed, 11 insertions(+), 4 deletions(-) (limited to 'ucbhelper') diff --git a/ucbhelper/source/provider/propertyvalueset.cxx b/ucbhelper/source/provider/propertyvalueset.cxx index 94a3a4ec1507..2be13d771040 100644 --- a/ucbhelper/source/provider/propertyvalueset.cxx +++ b/ucbhelper/source/provider/propertyvalueset.cxx @@ -2,9 +2,9 @@ * * $RCSfile: propertyvalueset.cxx,v $ * - * $Revision: 1.4 $ + * $Revision: 1.5 $ * - * last change: $Author: armin $ $Date: 2001-03-08 10:01:02 $ + * last change: $Author: obo $ $Date: 2004-10-21 11:51:09 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -163,9 +163,16 @@ struct PropertyValue Any aObject; // getObject inline PropertyValue() - : nPropsSet( NO_VALUE_SET ), nOrigValue( NO_VALUE_SET ) {} + : nPropsSet( NO_VALUE_SET ), nOrigValue( NO_VALUE_SET ), + bBoolean(false), + nByte(0), + nShort(0), + nInt(0), + nLong(0), + nFloat(0.0), + nDouble(0.0) + {} }; - } // namespace ucb_impl using namespace ucb_impl; -- cgit