diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-08 15:56:04 -0600 |
---|---|---|
committer | Norbert Thiebaud <nthiebaud@gmail.com> | 2014-02-14 22:29:55 -0600 |
commit | fe671289c1f3f4532ebea3cd3b11b73dfd631bf9 (patch) | |
tree | 62eb25af1be2227b16d7f5a6e15d0d95e7516f7e | |
parent | 22f403de376382f16607c4f0a8500aa60a356004 (diff) |
coverity#738935 Unitialized scalar field
Change-Id: I88d921cc3a670a6cfd2f8a10e5c866a4874eb484
-rw-r--r-- | vcl/source/gdi/outdev3.cxx | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/vcl/source/gdi/outdev3.cxx b/vcl/source/gdi/outdev3.cxx index 5e66e31ee302..3a42baff65e3 100644 --- a/vcl/source/gdi/outdev3.cxx +++ b/vcl/source/gdi/outdev3.cxx @@ -910,15 +910,16 @@ bool PhysicalFontFace::IsBetterMatch( const FontSelectPattern& rFSD, FontMatchSt } ImplFontEntry::ImplFontEntry( const FontSelectPattern& rFontSelData ) -: maFontSelData( rFontSelData ), - maMetric( rFontSelData ), - mpConversion( NULL ), - mnRefCount( 1 ), - mnSetFontFlags( 0 ), - mnOwnOrientation( 0 ), - mnOrientation( 0 ), - mbInit( false ), - mpUnicodeFallbackList( NULL ) + : maFontSelData( rFontSelData ) + , maMetric( rFontSelData ) + , mpConversion( NULL ) + , mnLineHeight( 0 ) + , mnRefCount( 1 ) + , mnSetFontFlags( 0 ) + , mnOwnOrientation( 0 ) + , mnOrientation( 0 ) + , mbInit( false ) + , mpUnicodeFallbackList( NULL ) { maFontSelData.mpFontEntry = this; } |