diff options
author | Vladimir Glazounov <vg@openoffice.org> | 2006-11-21 16:23:44 +0000 |
---|---|---|
committer | Vladimir Glazounov <vg@openoffice.org> | 2006-11-21 16:23:44 +0000 |
commit | b5f3092cadc8cd9a42ede191a9fe78904841c4a0 (patch) | |
tree | 656af9e209ecc75976a4a58d080886fdce78bfad /configmgr | |
parent | 1755431c24514db22907e149e9066ffc6c5f3098 (diff) |
INTEGRATION: CWS pj65 (1.4.10); FILE MERGED
2006/10/24 06:41:26 pjanik 1.4.10.1: #i70649#: Prevent warnings on Mac OS X.
Diffstat (limited to 'configmgr')
-rw-r--r-- | configmgr/source/data/anydata.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/configmgr/source/data/anydata.cxx b/configmgr/source/data/anydata.cxx index b3353fbec45f..2907fc8cefbe 100644 --- a/configmgr/source/data/anydata.cxx +++ b/configmgr/source/data/anydata.cxx @@ -4,9 +4,9 @@ * * $RCSfile: anydata.cxx,v $ * - * $Revision: 1.5 $ + * $Revision: 1.6 $ * - * last change: $Author: kz $ $Date: 2006-11-06 14:47:12 $ + * last change: $Author: vg $ $Date: 2006-11-21 17:23:44 $ * * The Contents of this file are made available subject to * the terms of GNU Lesser General Public License Version 2.1. @@ -231,7 +231,7 @@ AnyData allocSimpleData(memory::Allocator const& _anAllocator, TypeCode _aSimple case Type::value_long: { - sal_Int64 nValue; + sal_Int64 nValue = 0; OSL_VERIFY(_aAny >>= nValue); Address aStorage = _anAllocator.allocate( sizeof nValue ); @@ -242,7 +242,7 @@ AnyData allocSimpleData(memory::Allocator const& _anAllocator, TypeCode _aSimple case Type::value_double: { - double dValue; + double dValue = 0; OSL_VERIFY(_aAny >>= dValue); Address aStorage = _anAllocator.allocate( sizeof dValue ); |