Kaydet (Commit) 006299c5 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#738713 Unitialized scalar field

Change-Id: I9241531bd9c7881c6edb57c4f3c0c8b594dae0d6
üst 03c62fa7
......@@ -198,7 +198,14 @@ public:
class LwpFootnoteSeparatorOptions
{
public:
LwpFootnoteSeparatorOptions(){}
LwpFootnoteSeparatorOptions()
: m_nFlag(0)
, m_nLength(0)
, m_nIndent(0)
, m_nAbove(0)
, m_nBelow(0)
{}
~LwpFootnoteSeparatorOptions(){}
void Read(LwpObjectStream* pObjStrm);
private:
......
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