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

coverity#738921 Uninitialized pointer field

Change-Id: I607a8d75b9ee60015a382ee4111c5ca8bac6a1f8
üst 5b039594
......@@ -47,9 +47,9 @@ float freetypeServerFontAdvance(const void* appFontHandle, gr_uint16 glyphId)
GraphiteServerFontLayout::GraphiteServerFontLayout(ServerFont& rServerFont) throw()
: ServerFontLayout(rServerFont),
maImpl(rServerFont.GetGraphiteFace()->face(),
rServerFont),
mpFeatures(NULL)
maImpl(rServerFont.GetGraphiteFace()->face(), rServerFont)
, mpFeatures(NULL)
, mpStr(NULL)
{
gr_font * pFont = rServerFont.GetGraphiteFace()->font(rServerFont.GetFontSelData().mnHeight);
if (!pFont)
......
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