Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: e4f4299859610638e45ec1a36266973b9a4eb47a authored by Johannes Schindelin on 12 February 2021, 14:50:10 UTC
Git 2.28.1
Tip revision: e4f4299
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