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, 14 insertions, 0 deletions
diff --git a/third_party/git/fuzz-pack-headers.c b/third_party/git/fuzz-pack-headers.c
new file mode 100644
index 0000000000..99da1d0fd3
--- /dev/null
+++ b/third_party/git/fuzz-pack-headers.c
@@ -0,0 +1,14 @@
+#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;
+}