From 98686ef888e926002bb92c60828b525b0f47f4ad Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ju=CC=88rg=20Lehni?= Date: Sat, 3 Jan 2015 00:51:06 +0100 Subject: [PATCH] Fix endless recursion in CompoundPath#reduce() --- src/path/CompoundPath.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/path/CompoundPath.js b/src/path/CompoundPath.js index 94e458ee..8e151f07 100644 --- a/src/path/CompoundPath.js +++ b/src/path/CompoundPath.js @@ -139,7 +139,7 @@ var CompoundPath = PathItem.extend(/** @lends CompoundPath# */{ this.remove(); return path; } else { - return reduce.call(this); + return reduce.base.call(this); } },