diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-07 23:14:58 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-08 12:30:16 -0600 |
commit | 47a82e10ca56a09846b275c0cf5af036791d31b0 (patch) | |
tree | e4235aace0c13ab6cdbe122a68019a39ccfca644 | |
parent | bfcd369f9b9072494b893dbdeee09f5e4341deac (diff) |
coverity#707783 Unitialized scalar field
Change-Id: I7d294c217da28b45fd94fb256d8f990d0f9427f5
-rw-r--r-- | include/filter/msfilter/svdfppt.hxx | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/filter/msfilter/svdfppt.hxx b/include/filter/msfilter/svdfppt.hxx index 286c1a07e41e..a64e05a7529b 100644 --- a/include/filter/msfilter/svdfppt.hxx +++ b/include/filter/msfilter/svdfppt.hxx @@ -286,7 +286,15 @@ struct PptUserEditAtom sal_Int16 eLastViewType; // enum view type public: - PptUserEditAtom() : nOffsetPersistDirectory( 0 ) {} + PptUserEditAtom() + : nLastSlideID( 0 ) + , nVersion( 0 ) + , nOffsetLastEdit( 0 ) + , nOffsetPersistDirectory( 0 ) + , nDocumentRef( 0 ) + , nMaxPersistWritten( 0 ) + , eLastViewType( 0 ) + {} friend SvStream& ReadPptUserEditAtom( SvStream& rIn, PptUserEditAtom& rAtom ); }; |