diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-01-24 14:16:14 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-01-24 15:05:00 +0000 |
commit | afb90e554c074a306d06a5c6c3e59e4c38a4ff66 (patch) | |
tree | d6aa5875888dd7a2f166979b6aafdd1c79bd6a9b /vcl/generic/glyphs | |
parent | 5b0395948e52b1e224ca605d453a8b27a7adc61e (diff) |
coverity#738921 Uninitialized pointer field
Change-Id: I607a8d75b9ee60015a382ee4111c5ca8bac6a1f8
Diffstat (limited to 'vcl/generic/glyphs')
-rw-r--r-- | vcl/generic/glyphs/graphite_serverfont.cxx | 8 |
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) |