From d100aaaeacdf99363069319e5936eae9ff21cce9 Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Sun, 17 Feb 2013 22:02:03 +0000 Subject: coverity#984038 Uninitialized scalar variable Change-Id: I6c460ea0ca039ccc8d62bb7a7005832fb809f369 --- basegfx/source/polygon/b2dpolygontools.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/basegfx/source/polygon/b2dpolygontools.cxx b/basegfx/source/polygon/b2dpolygontools.cxx index 926ff90b5aad..56176e5755de 100644 --- a/basegfx/source/polygon/b2dpolygontools.cxx +++ b/basegfx/source/polygon/b2dpolygontools.cxx @@ -2451,7 +2451,7 @@ namespace basegfx const sal_uInt32 nNextIndex((a + 1) % nPointCount); aBezier.setEndPoint(rCandidate.getB2DPoint(nNextIndex)); double fEdgeDist; - double fNewCut; + double fNewCut(0.0); bool bEdgeIsCurve(false); if(rCandidate.areControlPointsUsed()) -- cgit v1.2.3