Merge "Initialize pointer members to NULL to avoid illegal reference"

This commit is contained in:
Chris Craik
2014-01-17 18:41:14 +00:00
committed by Gerrit Code Review

View File

@@ -145,7 +145,7 @@ struct SkiaBitmapShader: public SkiaShader {
GLuint* textureUnit);
private:
SkiaBitmapShader() {
SkiaBitmapShader() : mBitmap(NULL), mTexture(NULL) {
}
SkBitmap* mBitmap;