Kaydet (Commit) 0d003606 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#1306214 Uninitialized pointer field

Change-Id: Iac0c13c2c8236109370bf4677cc62e7fa6041c5c
üst a0239af6
......@@ -211,7 +211,11 @@ class LeakTestObject
bool mbDeleted;
VclPtr<vcl::Window> mxRef;
void *mpRef;
LeakTestObject() {}
LeakTestObject()
: mbDeleted(false)
, mpRef(NULL)
{
}
public:
template<typename vcl_type, typename... Arg> static LeakTestObject *
Create(Arg &&... arg)
......
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