Kaydet (Commit) 51f74e36 authored tarafından Norbert Thiebaud's avatar Norbert Thiebaud

coverity#738708: Unitialized scalar field

Change-Id: I9c5c36a41131f55faf2b31b347b0df4eb5cc21e2
üst 4fcd5534
...@@ -110,7 +110,15 @@ private: ...@@ -110,7 +110,15 @@ private:
class LwpFontNameEntry class LwpFontNameEntry
{ {
public: public:
LwpFontNameEntry(){} LwpFontNameEntry()
: m_nOverrideBits(0)
, m_nApplyBits(0)
, m_nPointSize(0)
, m_nOverstrike(0)
, m_nTightness(0)
, m_nFaceName(0)
, m_nAltFaceName(0)
{}
~LwpFontNameEntry(){} ~LwpFontNameEntry(){}
public: public:
void Read(LwpObjectStream *pStrm); void Read(LwpObjectStream *pStrm);
......
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