Cast for fuzzer complaint

Given the cast in the following else block, this isn't the first time we've encountered this.

BUG=637187
GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2258463002

Review-Url: https://codereview.chromium.org/2258463002
diff --git a/src/gpu/GrSurface.cpp b/src/gpu/GrSurface.cpp
index 824a6a2..2da1f25 100644
--- a/src/gpu/GrSurface.cpp
+++ b/src/gpu/GrSurface.cpp
@@ -29,7 +29,8 @@
         SkASSERT(!GrPixelConfigIsCompressed(desc.fConfig));
         size_t colorBytes = GrBytesPerPixel(desc.fConfig);
         SkASSERT(colorBytes > 0);
-        size = colorValuesPerPixel * desc.fWidth * desc.fHeight * colorBytes;
+
+        size = (size_t) colorValuesPerPixel * desc.fWidth * desc.fHeight * colorBytes;
     } else {
         if (GrPixelConfigIsCompressed(desc.fConfig)) {
             size = GrCompressedFormatDataSize(desc.fConfig, desc.fWidth, desc.fHeight);