Kaydet (Commit) 47a82e10 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#707783 Unitialized scalar field

Change-Id: I7d294c217da28b45fd94fb256d8f990d0f9427f5
üst bfcd369f
...@@ -286,7 +286,15 @@ struct PptUserEditAtom ...@@ -286,7 +286,15 @@ struct PptUserEditAtom
sal_Int16 eLastViewType; // enum view type sal_Int16 eLastViewType; // enum view type
public: 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 ); friend SvStream& ReadPptUserEditAtom( SvStream& rIn, PptUserEditAtom& rAtom );
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment