bignum fuzzer: move new and free calls to the init and cleanup function.
[openssl.git] / fuzz / ct.c
index 411ccef4a06e54cc53c8f7a2103d33ba9ed55519..47b0fc3f78af3809740803f663515c8edc6644ea 100644 (file)
--- a/fuzz/ct.c
+++ b/fuzz/ct.c
 #include <openssl/ct.h>
 #include "fuzzer.h"
 
-int FuzzerInitialize(int *argc, char ***argv) {
+int FuzzerInitialize(int *argc, char ***argv)
+{
     return 1;
 }
 
-int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
+int FuzzerTestOneInput(const uint8_t *buf, size_t len)
+{
     const uint8_t **pp = &buf;
     unsigned char *der = NULL;
     STACK_OF(SCT) *scts = d2i_SCT_LIST(NULL, pp, len);
@@ -38,3 +40,7 @@ int FuzzerTestOneInput(const uint8_t *buf, size_t len) {
     }
     return 0;
 }
+
+void FuzzerCleanup(void)
+{
+}