summaryrefslogtreecommitdiffstats
path: root/ossfuzz/compress_frame_fuzzer.c
Commit message (Collapse)AuthorAgeFilesLines
* fix minor static analyzer warningsYann Collet2020-09-301-2/+2
| | | | | detected by scan-build and cppcheck fix #786
* Using size instead of LZ4_compressBound(size) <- causes heap overflowBimba Shrestha2019-09-231-1/+1
|
* Retreiving 32 bits from the end for fuzzerBimba Shrestha2019-09-141-5/+3
|
* Addressing naming nits and moving size modification up in all fuzzersBimba Shrestha2019-09-131-7/+8
|
* Seperating the seed generation and useBimba Shrestha2019-09-131-2/+4
|
* Making fuzzers use dataProducer api instead of random seed for decisionsBimba Shrestha2019-08-301-3/+8
|
* Adding comments, fixing nit, and hiding the struct in data producer apibimbashrestha2019-08-171-2/+0
|
* Seperating fuzz data producer api impl and header, using data producer on ↵bimbashrestha2019-08-161-0/+2
| | | | the easy fuzzers
* [fuzz] Add LZ4 frame fuzzersNick Terrell2019-07-191-0/+42
* Round trip fuzzer * Compress fuzzer * Decompress fuzzer