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