diff options
author | Henrique Nakashima <hnakashima@chromium.org> | 2017-09-05 12:07:02 -0400 |
---|---|---|
committer | Chromium commit bot <commit-bot@chromium.org> | 2017-09-05 17:27:26 +0000 |
commit | 1eae16d3b17d6b396969ecf81f6546f5a1d72dfd (patch) | |
tree | 6819d423b15bd05d68b296c6769a6bf531850dbe /testing/libfuzzer | |
parent | e7767a0c98548395c95b9f88fc30cf7b318f1939 (diff) | |
download | pdfium-1eae16d3b17d6b396969ecf81f6546f5a1d72dfd.tar.xz |
Remove isDevice parameter from barcode Render().
isDevice is currently false in tests and fuzzers and true in real
usage. This CL changes it all to true.
Change-Id: Idea14795d7f0bb70031e04e5c58e248de72fd39e
Reviewed-on: https://pdfium-review.googlesource.com/13130
Commit-Queue: Henrique Nakashima <hnakashima@chromium.org>
Reviewed-by: Tom Sepez <tsepez@chromium.org>
Diffstat (limited to 'testing/libfuzzer')
-rw-r--r-- | testing/libfuzzer/pdf_cfx_barcode_fuzzer.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/testing/libfuzzer/pdf_cfx_barcode_fuzzer.cc b/testing/libfuzzer/pdf_cfx_barcode_fuzzer.cc index 24cf0ab516..e791102103 100644 --- a/testing/libfuzzer/pdf_cfx_barcode_fuzzer.cc +++ b/testing/libfuzzer/pdf_cfx_barcode_fuzzer.cc @@ -30,7 +30,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { CFX_WideStringC content(reinterpret_cast<const wchar_t*>(data), size / sizeof(wchar_t)); - if (!barcode.Encode(content, false)) + if (!barcode.Encode(content)) return 0; // TODO(tsepez): Output to device. |