| Index: src/codec/SkSampledCodec.cpp | 
| diff --git a/src/codec/SkSampledCodec.cpp b/src/codec/SkSampledCodec.cpp | 
| index e52470505dc73b069b94706dd03ee4c022852f89..49c939c1f887c500f8795173a031dc2c996b36eb 100644 | 
| --- a/src/codec/SkSampledCodec.cpp | 
| +++ b/src/codec/SkSampledCodec.cpp | 
| @@ -253,8 +253,7 @@ SkCodec::Result SkSampledCodec::sampledDecode(const SkImageInfo& info, void* pix | 
|  | 
| // We handle filling uninitialized memory here instead of using this->codec(). | 
| // this->codec() does not know that we are sampling. | 
| -            const uint32_t fillValue = this->codec()->getFillValue(info.colorType(), | 
| -                    info.alphaType()); | 
| +            const uint32_t fillValue = this->codec()->getFillValue(info.colorType()); | 
| const SkImageInfo fillInfo = info.makeWH(info.width(), 1); | 
| for (; y < nativeSize.height(); y++) { | 
| int srcY = this->codec()->outputScanline(y); | 
|  |