mirror of
https://github.com/webmproject/libwebp.git
synced 2025-04-05 00:16:50 +02:00
advanced_api_fuzzer: reduce scaling limit
avoids another timeout while fuzzing with ASan Change-Id: Icf7209f3f93b894684ac7364864e4568b6b2c057
This commit is contained in:
parent
93d88aa25b
commit
0696e1a7fb
@ -85,7 +85,7 @@ int LLVMFuzzerTestOneInput(const uint8_t* const data, size_t size) {
|
|||||||
scaled_height != config.input.height) {
|
scaled_height != config.input.height) {
|
||||||
// Using the WebPRescalerImport internally can significantly slow
|
// Using the WebPRescalerImport internally can significantly slow
|
||||||
// down the execution. Avoid timeouts due to that.
|
// down the execution. Avoid timeouts due to that.
|
||||||
fuzz_px_limit /= 9;
|
fuzz_px_limit /= 11;
|
||||||
}
|
}
|
||||||
// A big output canvas can lead to out-of-memory and timeout issues,
|
// A big output canvas can lead to out-of-memory and timeout issues,
|
||||||
// but a big internal working buffer can too.
|
// but a big internal working buffer can too.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user