summaryrefslogtreecommitdiff
path: root/fuzz/driver.c
Commit message (Collapse)AuthorAgeFilesLines
* Following the license change, modify the boilerplates in fuzz/Richard Levitte2018-12-061-1/+1
| | | | | | | [skip ci] Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/7833)
* Update copyright yearMatt Caswell2018-09-111-1/+1
| | | | | Reviewed-by: Richard Levitte <levitte@openssl.org> (Merged from https://github.com/openssl/openssl/pull/7176)
* fuzz/driver.c: appease -Wmissing-prototypesPatrick Steuer2018-09-071-0/+3
| | | | | | | | | Signed-off-by: Patrick Steuer <patrick.steuer@de.ibm.com> Reviewed-by: Richard Levitte <levitte@openssl.org> Reviewed-by: Kurt Roeckx <kurt@roeckx.be> Reviewed-by: Nicola Tuveri <nic.tuv@gmail.com> (Merged from https://github.com/openssl/openssl/pull/7138)
* Add a FuzzerClean() functionKurt Roeckx2016-12-031-0/+2
| | | | | | | | This allows to free everything we allocated, so we can detect memory leaks. Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #2023
* FuzzerInitialize always existsKurt Roeckx2016-12-031-5/+2
| | | | | | | There was a time it could be NULL, but that was changed to always have it. Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #2023
* Fix formatting of fuzzersKurt Roeckx2016-12-031-1/+2
| | | | | Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #2023
* include stdlib for malloc() and free()Kurt Roeckx2016-06-111-0/+1
| | | | | | Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #1174
* Add support for fuzzing with AFLKurt Roeckx2016-06-041-0/+51
Reviewed-by: Ben Laurie <ben@links.org> MR: #2740