Index: fuzz/fuzz.cpp |
diff --git a/fuzz/fuzz.cpp b/fuzz/fuzz.cpp |
index a4151359b806cb9d670540927ab96cc1d2a9d64d..2e39da480eb21b20519f26a6325e4f34ba222956 100644 |
--- a/fuzz/fuzz.cpp |
+++ b/fuzz/fuzz.cpp |
@@ -206,17 +206,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; |