Kaydet (Commit) 94fcab78 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708630 Uninitialized scalar field

Change-Id: Iaab1985c5db6482578d66abf224248da38db1624
üst bedf2d65
...@@ -222,7 +222,12 @@ public: ...@@ -222,7 +222,12 @@ public:
sal_Int32 m_nObject; sal_Int32 m_nObject;
bool m_bTrueColor; bool m_bTrueColor;
JPGEmit() : m_pStream( NULL ), m_bTrueColor( false ) {} JPGEmit()
: m_pStream(NULL)
, m_nObject(0)
, m_bTrueColor(false)
{
}
~JPGEmit() { delete m_pStream; } ~JPGEmit() { delete m_pStream; }
}; };
......
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