diff options
author | Norbert Thiebaud <nthiebaud@gmail.com> | 2013-06-20 12:52:45 -0500 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2013-06-21 13:40:35 +0000 |
commit | d67c5b58f6174078fce4074b7c75d690f804c8cd (patch) | |
tree | 12cd7c6132b33807d6ab753335a7b0c6e615e961 | |
parent | f47b777a0b06fcc56569ac8aeff1a845d634ba1a (diff) |
coverity#707562 : Unitialized scalar variable
Change-Id: I3e3bebb25c5d2509de7017ece49d927f1d59c592
Reviewed-on: https://gerrit.libreoffice.org/4403
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
-rw-r--r-- | vcl/source/gdi/outdev3.cxx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/vcl/source/gdi/outdev3.cxx b/vcl/source/gdi/outdev3.cxx index 8338d9f8181b..be980cb73984 100644 --- a/vcl/source/gdi/outdev3.cxx +++ b/vcl/source/gdi/outdev3.cxx @@ -7172,6 +7172,7 @@ SystemTextLayoutData OutputDevice::GetSysTextLayoutData(const Point& rStartPt, c SystemTextLayoutData aSysLayoutData; aSysLayoutData.nSize = sizeof(aSysLayoutData); aSysLayoutData.rGlyphData.reserve( 256 ); + aSysLayoutData.orientation = 0; if ( mpMetaFile ) { |