about summary refs log tree commit diff
path: root/third_party/git/fuzz-pack-headers.c
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/git/fuzz-pack-headers.c')
-rw-r--r--third_party/git/fuzz-pack-headers.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/third_party/git/fuzz-pack-headers.c b/third_party/git/fuzz-pack-headers.c
deleted file mode 100644
index 99da1d0fd3..0000000000
--- a/third_party/git/fuzz-pack-headers.c
+++ /dev/null
@@ -1,14 +0,0 @@
-#include "packfile.h"
-
-int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
-
-int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
-{
-	enum object_type type;
-	unsigned long len;
-
-	unpack_object_header_buffer((const unsigned char *)data,
-				    (unsigned long)size, &type, &len);
-
-	return 0;
-}