michael@0: diff --git a/gfx/skia/src/core/SkDraw.cpp b/gfx/skia/src/core/SkDraw.cpp michael@0: --- a/gfx/skia/src/core/SkDraw.cpp michael@0: +++ b/gfx/skia/src/core/SkDraw.cpp michael@0: @@ -2529,17 +2529,17 @@ static bool compute_bounds(const SkPath& michael@0: michael@0: // init our bounds from the path michael@0: { michael@0: SkRect pathBounds = devPath.getBounds(); michael@0: pathBounds.inset(-SK_ScalarHalf, -SK_ScalarHalf); michael@0: pathBounds.roundOut(bounds); michael@0: } michael@0: michael@0: - SkIPoint margin; michael@0: + SkIPoint margin = SkIPoint::Make(0, 0); michael@0: if (filter) { michael@0: SkASSERT(filterMatrix); michael@0: michael@0: SkMask srcM, dstM; michael@0: michael@0: srcM.fBounds = *bounds; michael@0: srcM.fFormat = SkMask::kA8_Format; michael@0: srcM.fImage = NULL;