diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-08-15 12:52:41 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-08-15 12:54:01 +0200 |
commit | d82fc9a85f4b812af9e7c090c777a92600b337cf (patch) | |
tree | f598366de4396d4a62c9b294653de403e3bf2f92 /basegfx | |
parent | 3bb28b5aaef5e85a981dc9411db1f05524aeedf6 (diff) |
warning C4701: potentially uninitialized local variable 'bChanged' used
Change-Id: Ic8f60c7b04956a3b097ec3636b5561d2dd1f56b3
Diffstat (limited to 'basegfx')
-rw-r--r-- | basegfx/source/polygon/b2dpolypolygoncutter.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
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++) { |