Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 06214d171b10e9474a0233dbc5187fd6b109ff2a authored by Johannes Schindelin on 12 February 2021, 14:49:50 UTC
Git 2.24.4
Tip revision: 06214d1
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