summaryrefslogtreecommitdiffstats
path: root/fuzz/driver.c
AgeCommit message (Collapse)Author
2016-12-03Add a FuzzerClean() functionKurt Roeckx
This allows to free everything we allocated, so we can detect memory leaks. Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #2023
2016-12-03FuzzerInitialize always existsKurt Roeckx
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
2016-12-03Fix formatting of fuzzersKurt Roeckx
Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #2023
2016-06-11include stdlib for malloc() and free()Kurt Roeckx
Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #1174
2016-06-04Add support for fuzzing with AFLKurt Roeckx
Reviewed-by: Ben Laurie <ben@links.org> MR: #2740