From 96e834967c1d566c8c9368099287c2c32000cdef Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Tue, 18 Feb 2014 12:26:48 +0000 Subject: coverity#738937 Uninitialized scalar field Change-Id: I53ef199b8d20fdf6432bd9f8b2603a75bd54a093 --- vcl/source/glyphs/graphite_layout.cxx | 11 ++++++----- 1 file 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) { } -- cgit