Index: include/core/SkTLazy.h |
diff --git a/include/core/SkTLazy.h b/include/core/SkTLazy.h |
index 8032538c4498860caa69b8c068030b4ae8d8ae47..399b26cde84d071427d7bdee6a1dfbede6a4b10f 100644 |
--- a/include/core/SkTLazy.h |
+++ b/include/core/SkTLazy.h |
@@ -29,7 +29,7 @@ public: |
SkTLazy(const SkTLazy<T>& src) : fPtr(NULL) { |
if (src.isValid()) { |
- fPtr = new (fStorage.get()) T(*src->get()); |
+ fPtr = new (fStorage.get()) T(*src.get()); |
} else { |
fPtr = NULL; |
} |