summaryrefslogtreecommitdiff
path: root/testing/fuzzers/pdf_codec_fax_fuzzer.cc
diff options
context:
space:
mode:
authorTom Sepez <tsepez@chromium.org>2018-08-28 23:15:02 +0000
committerChromium commit bot <commit-bot@chromium.org>2018-08-28 23:15:02 +0000
commitb719bc4a6f219483059f66c33e4a3a7667d75ed5 (patch)
treebb1f512fd303b46dab323e849e56d21779d32488 /testing/fuzzers/pdf_codec_fax_fuzzer.cc
parentda379c7af512aa7baa221d38b04c8aa9912b4e02 (diff)
downloadpdfium-b719bc4a6f219483059f66c33e4a3a7667d75ed5.tar.xz
Use pdfium::span<> in more image modules
Change-Id: Ie344bb37abf7dde158d03cc2897dca3588f1a5e3 Reviewed-on: https://pdfium-review.googlesource.com/41550 Reviewed-by: Lei Zhang <thestig@chromium.org> Commit-Queue: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'testing/fuzzers/pdf_codec_fax_fuzzer.cc')
-rw-r--r--testing/fuzzers/pdf_codec_fax_fuzzer.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/fuzzers/pdf_codec_fax_fuzzer.cc b/testing/fuzzers/pdf_codec_fax_fuzzer.cc
index f6cc1e7200..1d0b0f85f8 100644
--- a/testing/fuzzers/pdf_codec_fax_fuzzer.cc
+++ b/testing/fuzzers/pdf_codec_fax_fuzzer.cc
@@ -30,7 +30,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
CCodec_FaxModule fax_module;
std::unique_ptr<CCodec_ScanlineDecoder> decoder(
- fax_module.CreateDecoder(data, size, width, height, K, EndOfLine,
+ fax_module.CreateDecoder({data, size}, width, height, K, EndOfLine,
ByteAlign, BlackIs1, Columns, Rows));
if (decoder) {