diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-23 09:18:06 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-23 09:40:05 +0100 |
commit | f2ac8d61165cf2a2e0a0369af553ff047e6cee24 (patch) | |
tree | 3d0a48d697131906505c732d16363a233de70bc1 | |
parent | f54ddcc680b551ba8629a768cc6569ee3d012ca7 (diff) |
coverity#708636 Uninitialized scalar field
Change-Id: I7b80da16399a7f8f6c6b1b4f78d1e2a4ddc6f4b5
-rw-r--r-- | vcl/generic/glyphs/gcach_rbmp.cxx | 11 |
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() {} |