From c119ec426b2a20b79d3ecaccaa91d15bc8d43a23 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Mon, 9 Sep 2013 20:09:11 +0100 Subject: [PATCH] CID#1079180 initialize buffer Change-Id: Id00bce6fe4826293f6b0ae842bc70b536e9aa99a --- sc/source/filter/qpro/qproform.cxx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sc/source/filter/qpro/qproform.cxx b/sc/source/filter/qpro/qproform.cxx index 2b9bca63752a..e977643d7db8 100644 --- a/sc/source/filter/qpro/qproform.cxx +++ b/sc/source/filter/qpro/qproform.cxx @@ -195,7 +195,8 @@ ConvErr QProToSc::Convert( const ScTokenArray*& pArray, sal_uInt16 /*nLen*/, con ScSingleRefData aSRD; FUNC_TYPE eType; DefTokenId eOc; - double nFloatArray[ nBufSize ], nFloat; + double nFloatArray[ nBufSize ] = {0}; + double nFloat; const sal_Char* pExtString = 0; aCRD.InitFlags();