summaryrefslogtreecommitdiffstats
path: root/vcl/generic
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2014-01-24 14:16:14 +0000
committerCaolán McNamara <caolanm@redhat.com>2014-01-24 15:05:00 +0000
commitafb90e554c074a306d06a5c6c3e59e4c38a4ff66 (patch)
treed6aa5875888dd7a2f166979b6aafdd1c79bd6a9b /vcl/generic
parentcoverity#735339 Unchecked return value from library (diff)
downloadcore-afb90e554c074a306d06a5c6c3e59e4c38a4ff66.tar.gz
core-afb90e554c074a306d06a5c6c3e59e4c38a4ff66.zip
coverity#738921 Uninitialized pointer field
Change-Id: I607a8d75b9ee60015a382ee4111c5ca8bac6a1f8
Diffstat (limited to 'vcl/generic')
-rw-r--r--vcl/generic/glyphs/graphite_serverfont.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/vcl/generic/glyphs/graphite_serverfont.cxx b/vcl/generic/glyphs/graphite_serverfont.cxx
index 42d98ad287d5..d548f5dd4852 100644
--- a/vcl/generic/glyphs/graphite_serverfont.cxx
+++ b/vcl/generic/glyphs/graphite_serverfont.cxx
@@ -46,10 +46,10 @@ float freetypeServerFontAdvance(const void* appFontHandle, gr_uint16 glyphId)
//
GraphiteServerFontLayout::GraphiteServerFontLayout(ServerFont& rServerFont) throw()
- : ServerFontLayout(rServerFont),
- maImpl(rServerFont.GetGraphiteFace()->face(),
- rServerFont),
- mpFeatures(NULL)
+ : ServerFontLayout(rServerFont),
+ maImpl(rServerFont.GetGraphiteFace()->face(), rServerFont)
+ , mpFeatures(NULL)
+ , mpStr(NULL)
{
gr_font * pFont = rServerFont.GetGraphiteFace()->font(rServerFont.GetFontSelData().mnHeight);
if (!pFont)