summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorNorbert Thiebaud <nthiebaud@gmail.com>2013-06-20 12:52:45 -0500
committerEike Rathke <erack@redhat.com>2013-06-21 13:40:35 +0000
commitd67c5b58f6174078fce4074b7c75d690f804c8cd (patch)
tree12cd7c6132b33807d6ab753335a7b0c6e615e961 /vcl
parentf47b777a0b06fcc56569ac8aeff1a845d634ba1a (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>
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/gdi/outdev3.cxx1
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 )
{