summaryrefslogtreecommitdiff
path: root/vcl/source/glyphs
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-02-18 12:26:48 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-02-18 15:18:10 +0000
commit96e834967c1d566c8c9368099287c2c32000cdef (patch)
tree78cd369c1ae4e6d3785b977219ebeb451c4484fd /vcl/source/glyphs
parentedbf8a382a4c8eb776189c027a020cca7b9d5f81 (diff)
coverity#738937 Uninitialized scalar field
Change-Id: I53ef199b8d20fdf6432bd9f8b2603a75bd54a093
Diffstat (limited to 'vcl/source/glyphs')
-rw-r--r--vcl/source/glyphs/graphite_layout.cxx11
1 files changed, 6 insertions, 5 deletions
diff --git a/vcl/source/glyphs/graphite_layout.cxx b/vcl/source/glyphs/graphite_layout.cxx
index 52ba5e8fdc02..b4616e96668f 100644
--- a/vcl/source/glyphs/graphite_layout.cxx
+++ b/vcl/source/glyphs/graphite_layout.cxx
@@ -493,11 +493,12 @@ GraphiteLayout::append(gr_segment *pSeg, ImplLayoutArgs &rArgs,
//
GraphiteLayout::GraphiteLayout(const gr_face * face, gr_font * font,
const grutils::GrFeatureParser * pFeatures) throw()
- : mpFace(face),
- mpFont(font),
- mnWidth(0),
- mfScaling(1.0),
- mpFeatures(pFeatures)
+ : mpFace(face)
+ , mpFont(font)
+ , mnSegCharOffset(0)
+ , mnWidth(0)
+ , mfScaling(1.0)
+ , mpFeatures(pFeatures)
{
}