fuzz: improve target perf (#864)

This attempts to improve issue types like timeout, slow_unit
and speed, as seen in the following oss-fuzz performance report:
https://oss-fuzz.com/performance-report/libFuzzer_go-toml_fuzz_toml/libfuzzer_asan_go-toml/2023-05-11
This commit is contained in:
manunio
2023-05-12 19:51:17 +05:30
committed by GitHub
parent d34104d493
commit 55ca4e35e4
+1 -1
View File
@@ -12,7 +12,7 @@ import (
) )
func FuzzToml(data []byte) int { func FuzzToml(data []byte) int {
if len(data) >= 10240 { if len(data) >= 2048 {
return 0 return 0
} }