| Index: gm/dashcircle.cpp
|
| diff --git a/gm/dashcircle.cpp b/gm/dashcircle.cpp
|
| index a02c7d0f7b4cf5e91f95df55d178d1d4d12b8724..cddd913723128addbd8ea25fb7720607064e1fd5 100644
|
| --- a/gm/dashcircle.cpp
|
| +++ b/gm/dashcircle.cpp
|
| @@ -68,7 +68,7 @@
|
| for (int index = 0; index < dashExample.length; ++index) {
|
| intervals[index] = dashExample.pattern[index] * dashLength;
|
| }
|
| - p.setPathEffect(SkDashPathEffect::Make(intervals, intervalCount, 0));
|
| + p.setPathEffect(SkDashPathEffect::Create(intervals, intervalCount, 0))->unref();
|
| canvas->drawPath(circle, p);
|
| canvas->translate(0, radius * 2 + 50);
|
| }
|
|
|