Kaydet (Commit) 4819843b authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1371448 Uninitialized pointer field

Change-Id: Iedfa017dffa4681a9d698108b5dbc7388637c611
üst ffa4d16c
......@@ -71,7 +71,6 @@ namespace comphelper
}
};
struct EventNotifierImpl
{
::osl::Mutex aMutex;
......@@ -83,7 +82,8 @@ namespace comphelper
std::shared_ptr<AsyncEventNotifierAutoJoin> pKeepThisAlive;
EventNotifierImpl()
:bTerminate( false )
: bTerminate(false)
, name(nullptr)
{
}
};
......
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