From a1b1625cfdf5cd86de72f60915f0874a93e96240 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Wed, 12 Feb 2014 12:38:18 +0200 Subject: [PATCH] cid#707669 uninitialized pointer value Change-Id: I252f88ba76d9b927d472655d2bee71cc85b22452 --- .../controller/chartapiwrapper/WrappedNumberFormatProperty.cxx | 1 + 1 file changed, 1 insertion(+) diff --git a/chart2/source/controller/chartapiwrapper/WrappedNumberFormatProperty.cxx b/chart2/source/controller/chartapiwrapper/WrappedNumberFormatProperty.cxx index a4010a81e4e2..ce73ee3a609c 100644 --- a/chart2/source/controller/chartapiwrapper/WrappedNumberFormatProperty.cxx +++ b/chart2/source/controller/chartapiwrapper/WrappedNumberFormatProperty.cxx @@ -32,6 +32,7 @@ namespace wrapper WrappedNumberFormatProperty::WrappedNumberFormatProperty( ::boost::shared_ptr< Chart2ModelContact > spChart2ModelContact ) : WrappedDirectStateProperty( "NumberFormat", "NumberFormat" ) , m_spChart2ModelContact(spChart2ModelContact) + , m_pWrappedLinkNumberFormatProperty(NULL) { m_aOuterValue = getPropertyDefault( 0 ); }