Staging
v0.5.1
https://github.com/git/git
Raw File
Tip revision: 66262451ec94d30ac4b80eb3123549cf7a788afd authored by Junio C Hamano on 30 July 2021, 23:14:07 UTC
Git 2.33-rc0
Tip revision: 6626245
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