summaryrefslogtreecommitdiff
path: root/stoc
diff options
context:
space:
mode:
authorJulien Nabet <serval2412@yahoo.fr>2013-01-27 21:04:43 +0100
committerJulien Nabet <serval2412@yahoo.fr>2013-01-27 23:11:41 +0100
commitd5d202709f164edeb33e7cac7ddf5a8aa59f19ee (patch)
tree938d06a7e04bd32bcb15f0b9c10d3df19d41022c /stoc
parente820c249a4280fb38cf0ef7664006707382a687e (diff)
Fix uninitialized variables
Change-Id: Iafd54c2b766bebf87cca211948a10695d585f0d9
Diffstat (limited to 'stoc')
-rw-r--r--stoc/test/testiadapter.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/stoc/test/testiadapter.cxx b/stoc/test/testiadapter.cxx
index 22230d6da093..9aaa29decc81 100644
--- a/stoc/test/testiadapter.cxx
+++ b/stoc/test/testiadapter.cxx
@@ -329,8 +329,8 @@ Any XLB_Invocation::invoke( const OUString & rFunctionName,
sal_uInt32 nULong;
sal_Int64 nHyper;
sal_uInt64 nUHyper;
- float fFloat;
- double fDouble;
+ float fFloat = 0.0;
+ double fDouble = 0.0;
TestEnum eEnum;
OUString aString;
Reference< XInterface > xInterface;