Kaydet (Commit) 96e83496 authored tarafından Caolán McNamara's avatar Caolán McNamara

coverity#738937 Uninitialized scalar field

Change-Id: I53ef199b8d20fdf6432bd9f8b2603a75bd54a093
üst edbf8a38
......@@ -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)
{
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment