From eacfa6367074fd139a97ce77d6bcbd2d3872467f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Caol=C3=A1n=20McNamara?= Date: Fri, 11 Apr 2014 21:16:23 +0100 Subject: [PATCH] coverity#707839 Uninitialized scalar field Change-Id: Ib9cf1d3da0cf03b6aa0aaa7b5206803730115cc8 --- filter/source/msfilter/msdffimp.cxx | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/filter/source/msfilter/msdffimp.cxx b/filter/source/msfilter/msdffimp.cxx index 2323f8b55169..ff8a9b3624fc 100644 --- a/filter/source/msfilter/msdffimp.cxx +++ b/filter/source/msfilter/msdffimp.cxx @@ -199,10 +199,11 @@ void Impl_OlePres::Write( SvStream & rStm ) rStm.Seek( nEndPos ); } -DffPropertyReader::DffPropertyReader( const SvxMSDffManager& rMan ) : - rManager( rMan ), - pDefaultPropSet( NULL ), - mbRotateGranientFillWithAngle ( false ) +DffPropertyReader::DffPropertyReader( const SvxMSDffManager& rMan ) + : rManager(rMan) + , pDefaultPropSet(NULL) + , mnFix16Angle(0) + , mbRotateGranientFillWithAngle(false) { InitializePropSet( DFF_msofbtOPT ); }