]> git.sesse.net Git - ffmpeg/commitdiff
tools/target_dem_fuzzer.c: Decrease maxblocks
authorMichael Niedermayer <michael@niedermayer.cc>
Sat, 26 Dec 2020 15:53:27 +0000 (16:53 +0100)
committerMichael Niedermayer <michael@niedermayer.cc>
Tue, 5 Jan 2021 01:00:05 +0000 (02:00 +0100)
Fixes: Timeout
Fixes: 28606/clusterfuzz-testcase-minimized-ffmpeg_dem_FRM_fuzzer-5123311424110592
Fixes: 28796/clusterfuzz-testcase-minimized-ffmpeg_dem_R3D_fuzzer-5945803411685376
Fixes: 28821/clusterfuzz-testcase-minimized-ffmpeg_dem_BRSTM_fuzzer-6044239834251264
Fixes: 28841/clusterfuzz-testcase-minimized-ffmpeg_dem_SIFF_fuzzer-5485368388485120
Fixes: 28862/clusterfuzz-testcase-minimized-ffmpeg_dem_AST_fuzzer-5081306790756352
Found-by: continuous fuzzing process https://github.com/google/oss-fuzz/tree/master/projects/ffmpeg
Signed-off-by: Michael Niedermayer <michael@niedermayer.cc>
tools/target_dem_fuzzer.c

index db32ec327299b2549e876c4a8abfbda11fde6ec6..8ff98af945e74f11d27512a454ed5859ab546682 100644 (file)
@@ -88,7 +88,7 @@ static int64_t io_seek(void *opaque, int64_t offset, int whence)
 
 // Ensure we don't loop forever
 const uint32_t maxiteration = 8096;
-const int maxblocks= 100000;
+const int maxblocks= 50000;
 
 static const uint64_t FUZZ_TAG = 0x4741542D5A5A5546ULL;