Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 6c85aac65fb455af85745130ce35ddae4678db84 authored by Junio C Hamano on 16 March 2020, 19:46:32 UTC
Git 2.26-rc2
Tip revision: 6c85aac
fuzz-pack-headers.c
#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;
}
back to top