[Libreoffice-commits] core.git: filter/source

Caolán McNamara caolanm at redhat.com
Fri Apr 11 13:22:05 PDT 2014


 filter/source/msfilter/msdffimp.cxx |    9 +++++----
 1 file changed, 5 insertions(+), 4 deletions(-)

New commits:
commit eacfa6367074fd139a97ce77d6bcbd2d3872467f
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Fri Apr 11 21:16:23 2014 +0100

    coverity#707839 Uninitialized scalar field
    
    Change-Id: Ib9cf1d3da0cf03b6aa0aaa7b5206803730115cc8

diff --git a/filter/source/msfilter/msdffimp.cxx b/filter/source/msfilter/msdffimp.cxx
index 2323f8b..ff8a9b3 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 );
 }


More information about the Libreoffice-commits mailing list