Kaydet (Commit) 283f661e authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#738760: Unitialized scalar field

Change-Id: If4f3e607894d8babddc75264e4a84bcf69a4097b
üst d59f879f
...@@ -111,7 +111,10 @@ public: ...@@ -111,7 +111,10 @@ public:
class LwpMergeOptions class LwpMergeOptions
{ {
public: public:
LwpMergeOptions(){} LwpMergeOptions()
: m_nType(0)
, m_nLastActionFlag(0)
{}
~LwpMergeOptions(){} ~LwpMergeOptions(){}
private: private:
LwpAtomHolder m_RecordFile; LwpAtomHolder m_RecordFile;
......
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