From ccc77d2a8dee28815873d8dfff3c8d66e28d196b Mon Sep 17 00:00:00 2001 From: Glenn Randers-Pehrson Date: Sat, 14 Oct 2017 11:33:59 -0500 Subject: [libpng16] Add a call to png_set_packing() to the fuzzer. --- contrib/oss-fuzz/libpng_read_fuzzer.cc | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'contrib') diff --git a/contrib/oss-fuzz/libpng_read_fuzzer.cc b/contrib/oss-fuzz/libpng_read_fuzzer.cc index b6cfb989f..2893f6148 100644 --- a/contrib/oss-fuzz/libpng_read_fuzzer.cc +++ b/contrib/oss-fuzz/libpng_read_fuzzer.cc @@ -5,7 +5,7 @@ // Use of this source code is governed by a BSD-style license that may // be found in the LICENSE file https://cs.chromium.org/chromium/src/LICENSE -// Last changed in libpng 1.6.35 [October 13, 2017] +// Last changed in libpng 1.6.35 [October 14, 2017] // The modifications in 2017 by Glenn Randers-Pehrson include // 1. addition of a PNG_CLEANUP macro, @@ -164,6 +164,7 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { // Set several transforms that browsers typically use: png_set_gray_to_rgb(png_handler.png_ptr); png_set_expand(png_handler.png_ptr); + png_set_packing(png_handler.png_ptr); png_set_scale_16(png_handler.png_ptr); png_set_add_alpha(png_handler.png_ptr, 0xffff, PNG_FILLER_AFTER); -- cgit v1.2.1