You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@flex.apache.org by qu...@apache.org on 2013/10/03 23:32:08 UTC

[2/3] git commit: [flex-sdk] [refs/heads/develop] - Fixes FLEX-32887

Fixes FLEX-32887


Project: http://git-wip-us.apache.org/repos/asf/flex-sdk/repo
Commit: http://git-wip-us.apache.org/repos/asf/flex-sdk/commit/80565a5e
Tree: http://git-wip-us.apache.org/repos/asf/flex-sdk/tree/80565a5e
Diff: http://git-wip-us.apache.org/repos/asf/flex-sdk/diff/80565a5e

Branch: refs/heads/develop
Commit: 80565a5ed24932627b70a77683a83415fe057f8b
Parents: f1c3985
Author: quetwo <ni...@theflexgroup.org>
Authored: Thu Oct 3 17:03:50 2013 -0400
Committer: quetwo <ni...@theflexgroup.org>
Committed: Thu Oct 3 17:03:50 2013 -0400

----------------------------------------------------------------------
 .../charts/src/mx/charts/chartClasses/GraphicsUtilities.as         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/flex-sdk/blob/80565a5e/frameworks/projects/charts/src/mx/charts/chartClasses/GraphicsUtilities.as
----------------------------------------------------------------------
diff --git a/frameworks/projects/charts/src/mx/charts/chartClasses/GraphicsUtilities.as b/frameworks/projects/charts/src/mx/charts/chartClasses/GraphicsUtilities.as
index 9b66b08..94bb8e6 100644
--- a/frameworks/projects/charts/src/mx/charts/chartClasses/GraphicsUtilities.as
+++ b/frameworks/projects/charts/src/mx/charts/chartClasses/GraphicsUtilities.as
@@ -330,7 +330,7 @@ public class GraphicsUtilities
 
 			// Check for coincident points at the head of the list.
 			// We'll skip over any of those			
-			while (start != end)
+			while (start != end && ((start + incr) != end))
 			{
 				if (pts[start + incr][hProp] != pts[start][hProp] ||
 					pts[start + incr][vProp] != pts[start][vProp])