Kaydet (Commit) 496c5384 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#708531 Uninitialized pointer field

Change-Id: I4519cf5b3ecf53c678621a4b8f6267dd4a41fcad
üst 02c1234b
......@@ -42,9 +42,10 @@
// class VCLXDevice
VCLXDevice::VCLXDevice()
: mpOutputDevice(NULL)
, pDummy(NULL)
, nFlags(0)
{
mpOutputDevice = NULL;
nFlags = 0;
}
VCLXDevice::~VCLXDevice()
......
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