aboutsummaryrefslogtreecommitdiff
path: root/fuzz/driver.c
AgeCommit message (Collapse)AuthorFilesLines
2016-12-03Add a FuzzerClean() functionKurt Roeckx1-0/+2
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 Roeckx1-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
2016-12-03Fix formatting of fuzzersKurt Roeckx1-1/+2
Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #2023
2016-06-11include stdlib for malloc() and free()Kurt Roeckx1-0/+1
Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #1174
2016-06-04Add support for fuzzing with AFLKurt Roeckx1-0/+51
Reviewed-by: Ben Laurie <ben@links.org> MR: #2740