| Index: gm/arcto.cpp
 | 
| diff --git a/gm/arcto.cpp b/gm/arcto.cpp
 | 
| index 584fca3c4f0dd6c338455c0257b8469368e59f29..fcbc3d59262d1043d25b85c5e4ed197f2bd3722a 100644
 | 
| --- a/gm/arcto.cpp
 | 
| +++ b/gm/arcto.cpp
 | 
| @@ -223,6 +223,6 @@ DEF_SIMPLE_GM(bug583299, canvas, 300, 300) {
 | 
|    SkScalar length = meas.getLength();
 | 
|    SkScalar intervals[] = {0, length };
 | 
|    int intervalCount = (int) SK_ARRAY_COUNT(intervals);
 | 
| -  p.setPathEffect(SkDashPathEffect::Create(intervals, intervalCount, 0))->unref();
 | 
| +  p.setPathEffect(SkDashPathEffect::Make(intervals, intervalCount, 0));
 | 
|    canvas->drawPath(path, p);
 | 
|  }
 | 
| 
 |