summaryrefslogtreecommitdiffstats
path: root/ossfuzz/round_trip_fuzzer.c
Commit message (Collapse)AuthorAgeFilesLines
* fixed direct-leak in round_trip_fuzzer.cYann Collet2022-07-101-2/+3
| | | | reported by oss-fuzz
* - Fixed incorrect free in `round_trip_fuzzer.c` ↵Yonatan Komornik2022-07-091-1/+1
| | | | | | (https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=48884) - Fixed `round_trip_frame_uncompressed_fuzzer.c` to not use uninitialized memory (https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=48910)
* ossfuzz: add fuzz for `LZ4_decompress_safe_partial_usingDict`Qi Wang2022-06-071-3/+62
| | | | Signed-off-by: Qi Wang <wangqi@linux.alibaba.com>
* Retreiving 32 bits from the end for fuzzerBimba Shrestha2019-09-141-4/+3
|
* Addressing naming nits and moving size modification up in all fuzzersBimba Shrestha2019-09-131-6/+6
|
* Seperating the seed generation and useBimba Shrestha2019-09-131-1/+3
|
* Making fuzzers use dataProducer api instead of random seed for decisionsBimba Shrestha2019-08-301-2/+8
|
* [ossfuzz] Improve the fuzzersNick Terrell2019-07-151-0/+50
* Run more decompression variants * Round trip the compression fuzzer and do partial decompression as well * Add a compression fuzzer that compresses into a smaller output buffer and test the destSize variant These fuzzers caught 2 bugs that were fixed in the previous commit. * Input buffer over-read in partial decompress * Partial decompress fails if output size is 0