summaryrefslogtreecommitdiffstats
path: root/fuzz/bndiv.c
diff options
context:
space:
mode:
authorKurt Roeckx <kurt@roeckx.be>2016-11-19 17:13:10 +0100
committerKurt Roeckx <kurt@roeckx.be>2016-12-03 00:14:14 +0100
commitad4da7fbc0779fb1730c9862221e19583de69f4f (patch)
tree2d28fc3b7aa07ded6ca7841daeddb91216f43df6 /fuzz/bndiv.c
parentbaae2cbc92accf4fa53a7b8faaf3df1153c943f5 (diff)
Add a FuzzerClean() function
This allows to free everything we allocated, so we can detect memory leaks. Reviewed-by: Rich Salz <rsalz@openssl.org> GH: #2023
Diffstat (limited to 'fuzz/bndiv.c')
-rw-r--r--fuzz/bndiv.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/fuzz/bndiv.c b/fuzz/bndiv.c
index 9319878607..eb17f29cab 100644
--- a/fuzz/bndiv.c
+++ b/fuzz/bndiv.c
@@ -107,3 +107,7 @@ int FuzzerTestOneInput(const uint8_t *buf, size_t len)
return 0;
}
+
+void FuzzerCleanup(void)
+{
+}