Module: wine Branch: master Commit: 3ac2c9eea03550dfee70254e25536ebd9863e023 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3ac2c9eea03550dfee70254e25... Author: Austin English <austinenglish(a)gmail.com> Date: Wed Mar 9 01:07:14 2011 -0800 gdiplus: Avoid shadowing a parameter. --- dlls/gdiplus/graphicspath.c | 3 +-- 1 files changed, 1 insertions(+), 2 deletions(-) diff --git a/dlls/gdiplus/graphicspath.c b/dlls/gdiplus/graphicspath.c index 992bd7c..971ab31 100644 --- a/dlls/gdiplus/graphicspath.c +++ b/dlls/gdiplus/graphicspath.c @@ -384,8 +384,7 @@ GpStatus WINGDIPAPI GdipAddPathClosedCurve2(GpPath *path, GDIPCONST GpPointF *po /* close figure */ if(stat == Ok){ - INT count = path->pathdata.Count; - path->pathdata.Types[count - 1] |= PathPointTypeCloseSubpath; + path->pathdata.Types[path->pathdata.Count - 1] |= PathPointTypeCloseSubpath; path->newfigure = TRUE; }