diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-07 23:26:52 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-08 12:30:16 -0600 |
commit | 7ab03b245d255a66678bda4c622af3096fd4e5aa (patch) | |
tree | c9b966f370de2534bfe02bdb3c2025d553a99cca | |
parent | 618891adc69a27e9461bbc6ba69f4168426223ef (diff) |
coverity#707785 Unitialized scalar field
Change-Id: If3a54628ae6dc0deb605ff075695147d6a58762b
-rw-r--r-- | include/filter/msfilter/svdfppt.hxx | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/include/filter/msfilter/svdfppt.hxx b/include/filter/msfilter/svdfppt.hxx index b37bcb0e1027..2e9f099cd714 100644 --- a/include/filter/msfilter/svdfppt.hxx +++ b/include/filter/msfilter/svdfppt.hxx @@ -891,8 +891,19 @@ struct ImplPPTParaPropSet sal_uInt32 nDontKnow2; sal_uInt16 nDontKnow2bit06; - ImplPPTParaPropSet() - { mnRefCount = 1; mnAttrSet = 0; mnExtParagraphMask = 0; mnDepth = 0; }; + ImplPPTParaPropSet() + : mnRefCount( 1 ) + , mnDepth( 0 ) + , mnAttrSet( 0 ) + , mnBulletColor( 0 ) + , mnExtParagraphMask( 0 ) + , mnAnmScheme( 0 ) + , mnHasAnm( 0 ) + , mnBuBlip( 0 ) + , nDontKnow1( 0 ) + , nDontKnow2( 0 ) + , nDontKnow2bit06( 0 ) + { } }; struct PPTParaPropSet |