summaryrefslogtreecommitdiff
path: root/vcl/generic
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-10-05 17:18:49 +0100
committerCaolán McNamara <caolanm@redhat.com>2013-10-07 09:16:24 +0100
commit51f6eaec244bb8568f9d1ccdc647f34ca81f55d5 (patch)
treecf918f45929ef9f9d562e9367c4ee4bdba3e0c48 /vcl/generic
parent6edf8cf6c66dc4a27fae3f15bfa9fc6de7a3f9af (diff)
CID#708635 uninitialized members
Change-Id: I875f11347c8d73297ef19c7da858b7246ebd44ca
Diffstat (limited to 'vcl/generic')
-rw-r--r--vcl/generic/glyphs/gcach_ftyp.cxx1
1 files changed, 1 insertions, 0 deletions
diff --git a/vcl/generic/glyphs/gcach_ftyp.cxx b/vcl/generic/glyphs/gcach_ftyp.cxx
index 2bd1e0fbd977..e037cd7b4d9b 100644
--- a/vcl/generic/glyphs/gcach_ftyp.cxx
+++ b/vcl/generic/glyphs/gcach_ftyp.cxx
@@ -1912,6 +1912,7 @@ PolyArgs::PolyArgs( PolyPolygon& rPolyPoly, sal_uInt16 nMaxPoints )
{
mpPointAry = new Point[ mnMaxPoints ];
mpFlagAry = new sal_uInt8 [ mnMaxPoints ];
+ maPosition.x = maPosition.y = 0;
}
// -----------------------------------------------------------------------