From d82fc9a85f4b812af9e7c090c777a92600b337cf Mon Sep 17 00:00:00 2001 From: Michael Stahl Date: Thu, 15 Aug 2013 12:52:41 +0200 Subject: warning C4701: potentially uninitialized local variable 'bChanged' used Change-Id: Ic8f60c7b04956a3b097ec3636b5561d2dd1f56b3 --- basegfx/source/polygon/b2dpolypolygoncutter.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'basegfx') diff --git a/basegfx/source/polygon/b2dpolypolygoncutter.cxx b/basegfx/source/polygon/b2dpolypolygoncutter.cxx index 22b9d4fffad4..b93b271b64d0 100644 --- a/basegfx/source/polygon/b2dpolypolygoncutter.cxx +++ b/basegfx/source/polygon/b2dpolypolygoncutter.cxx @@ -664,7 +664,7 @@ namespace basegfx { basegfx::B2DPolygon aTemp(aRetval.getB2DPolygon(a)); const sal_uInt32 nPointCount(aTemp.count()); - bool bChanged; + bool bChanged(false); for(sal_uInt32 b(0); b < nPointCount; b++) { -- cgit v1.2.3