Index: src/core/SkRegion_path.cpp |
diff --git a/src/core/SkRegion_path.cpp b/src/core/SkRegion_path.cpp |
index a20647c9663da3f6f53e3d99cd3217a4d8e6d7c9..bea4ff20b45a066b0975182b9e1dd234271ffc06 100644 |
--- a/src/core/SkRegion_path.cpp |
+++ b/src/core/SkRegion_path.cpp |
@@ -15,6 +15,7 @@ |
class SkRgnBuilder : public SkBlitter { |
public: |
+ SkRgnBuilder(); |
virtual ~SkRgnBuilder(); |
// returns true if it could allocate the working storage needed |
@@ -98,6 +99,10 @@ private: |
} |
}; |
+SkRgnBuilder::SkRgnBuilder() |
+ : fStorage(NULL) { |
+} |
+ |
SkRgnBuilder::~SkRgnBuilder() { |
sk_free(fStorage); |
} |