Kaydet (Commit) 7830fc98 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1257743 Uninitialized pointer field

Change-Id: Iaa0c47bcd53eaaf2577a5401762afaabe44e7514
üst 067b5603
......@@ -80,6 +80,13 @@ class DemoMtfApp : public Application
}
public:
DemoMtfApp()
: mpWin(NULL)
, mpFileName(NULL)
{
}
virtual int Main() SAL_OVERRIDE
{
mpWin = new DemoMtfWin(*mpFileName);
......
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