Index: src/core/SkPath.cpp |
diff --git a/src/core/SkPath.cpp b/src/core/SkPath.cpp |
index 97e34386dc1ce3aeeb8b09919cbeecc3096b35fa..1326362524c2847227c821926abeac1958430489 100644 |
--- a/src/core/SkPath.cpp |
+++ b/src/core/SkPath.cpp |
@@ -180,7 +180,7 @@ bool operator==(const SkPath& a, const SkPath& b) { |
void SkPath::swap(SkPath& that) { |
if (this != &that) { |
- fPathRef.swap(&that.fPathRef); |
+ fPathRef.swap(that.fPathRef); |
SkTSwap<int>(fLastMoveToIndex, that.fLastMoveToIndex); |
SkTSwap<uint8_t>(fFillType, that.fFillType); |
SkTSwap<uint8_t>(fConvexity, that.fConvexity); |