diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-03-10 12:30:58 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-03-10 14:43:26 +0000 |
commit | 496c53843631b015cbd3162d706109ce4e94a483 (patch) | |
tree | d33ba61bd1109d670a116b720161e0f159b09e9e | |
parent | 02c1234b26e3286338c3d9fdfa1ddf93fce73952 (diff) |
coverity#708531 Uninitialized pointer field
Change-Id: I4519cf5b3ecf53c678621a4b8f6267dd4a41fcad
-rw-r--r-- | toolkit/source/awt/vclxdevice.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/toolkit/source/awt/vclxdevice.cxx b/toolkit/source/awt/vclxdevice.cxx index be115339af13..f9b1c4f3a383 100644 --- a/toolkit/source/awt/vclxdevice.cxx +++ b/toolkit/source/awt/vclxdevice.cxx @@ -42,9 +42,10 @@ // class VCLXDevice VCLXDevice::VCLXDevice() + : mpOutputDevice(NULL) + , pDummy(NULL) + , nFlags(0) { - mpOutputDevice = NULL; - nFlags = 0; } VCLXDevice::~VCLXDevice() |