diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-02-18 12:26:48 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-02-18 15:18:10 +0000 |
commit | 96e834967c1d566c8c9368099287c2c32000cdef (patch) | |
tree | 78cd369c1ae4e6d3785b977219ebeb451c4484fd /vcl/source/glyphs/graphite_layout.cxx | |
parent | edbf8a382a4c8eb776189c027a020cca7b9d5f81 (diff) |
coverity#738937 Uninitialized scalar field
Change-Id: I53ef199b8d20fdf6432bd9f8b2603a75bd54a093
Diffstat (limited to 'vcl/source/glyphs/graphite_layout.cxx')
-rw-r--r-- | vcl/source/glyphs/graphite_layout.cxx | 11 |
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) { } |