summaryrefslogtreecommitdiffstats
path: root/vcl/generic/glyphs
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-04-23 09:18:06 +0100
committerCaolán McNamara <caolanm@redhat.com>2014-04-23 09:40:05 +0100
commitf2ac8d61165cf2a2e0a0369af553ff047e6cee24 (patch)
tree3d0a48d697131906505c732d16363a233de70bc1 /vcl/generic/glyphs
parentcoverity#708671 Uninitialized scalar field (diff)
downloadcore-f2ac8d61165cf2a2e0a0369af553ff047e6cee24.tar.gz
core-f2ac8d61165cf2a2e0a0369af553ff047e6cee24.zip
coverity#708636 Uninitialized scalar field
Change-Id: I7b80da16399a7f8f6c6b1b4f78d1e2a4ddc6f4b5
Diffstat (limited to 'vcl/generic/glyphs')
-rw-r--r--vcl/generic/glyphs/gcach_rbmp.cxx11
1 files changed, 9 insertions, 2 deletions
diff --git a/vcl/generic/glyphs/gcach_rbmp.cxx b/vcl/generic/glyphs/gcach_rbmp.cxx
index 23d3ed9abe75..37f079c7548b 100644
--- a/vcl/generic/glyphs/gcach_rbmp.cxx
+++ b/vcl/generic/glyphs/gcach_rbmp.cxx
@@ -21,8 +21,15 @@
#include <string.h>
RawBitmap::RawBitmap()
-: mnAllocated(0)
-{}
+ : mnAllocated(0)
+ , mnWidth(0)
+ , mnHeight(0)
+ , mnScanlineSize(0)
+ , mnBitCount(0)
+ , mnXOffset(0)
+ , mnYOffset(0)
+{
+}
RawBitmap::~RawBitmap()
{}