diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-09-25 09:14:19 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-09-25 10:09:27 +0100 |
commit | 88a23bba104b51af766c86b51b69d80c7fe37ee3 (patch) | |
tree | 2ee6485fb269f2cf110a406a8cf04664989aed57 /emfio | |
parent | 1e1f2e677fbf6c8043318450640f54c892699d55 (diff) |
Conditional jump or move depends on uninitialised value
Change-Id: I772c38c62950edbcde450889bae61dc37118b8cd
Diffstat (limited to 'emfio')
-rw-r--r-- | emfio/inc/mtftools.hxx | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/emfio/inc/mtftools.hxx b/emfio/inc/mtftools.hxx index 6eb9367bb3e8..d9f9dd62ea22 100644 --- a/emfio/inc/mtftools.hxx +++ b/emfio/inc/mtftools.hxx @@ -129,6 +129,22 @@ namespace emfio sal_uInt8 lfQuality; sal_uInt8 lfPitchAndFamily; OUString alfFaceName; + LOGFONTW() + : lfHeight(0) + , lfWidth(0) + , lfEscapement(0) + , lfOrientation(0) + , lfWeight(0) + , lfItalic(0) + , lfUnderline(0) + , lfStrikeOut(0) + , lfCharSet(0) + , lfOutPrecision(0) + , lfClipPrecision(0) + , lfQuality(0) + , lfPitchAndFamily(0) + { + } }; } |