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

coverity#738921 Uninitialized pointer field

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