| Index: fuzz/fuzz.cpp
|
| diff --git a/fuzz/fuzz.cpp b/fuzz/fuzz.cpp
|
| index 549194619a7d1b3bd3578fec258fc0eb56f30d5f..031bfcb59dd30a652c485edcc3dbb5da52dfd195 100644
|
| --- a/fuzz/fuzz.cpp
|
| +++ b/fuzz/fuzz.cpp
|
| @@ -200,17 +200,6 @@ int fuzz_img(sk_sp<SkData> bytes, uint8_t scale, uint8_t mode) {
|
| // image, memory will be filled with a default value.
|
| codec->getScanlines(dst, height, rowBytes);
|
| break;
|
| - case SkCodec::kOutOfOrder_SkScanlineOrder: {
|
| - for (int y = 0; y < decodeInfo.height(); y++) {
|
| - int dstY = codec->outputScanline(y);
|
| - void* dstPtr = bitmap.getAddr(0, dstY);
|
| - // We complete the loop, even if this call begins to fail
|
| - // due to an incomplete image. This ensures any uninitialized
|
| - // memory will be filled with the proper value.
|
| - codec->getScanlines(dstPtr, 1, bitmap.rowBytes());
|
| - }
|
| - break;
|
| - }
|
| }
|
| SkDebugf("[terminated] Success!\n");
|
| break;
|
|
|