Staging
v0.5.1
Revision 9bf600f5edf4beea0ee980660bdc5ff523e7b5c5 authored by Junio C Hamano on 20 January 2022, 23:27:06 UTC, committed by Junio C Hamano on 20 January 2022, 23:27:06 UTC
2 parent s ebb085e + 297ca89
Raw File
fuzz-pack-idx.c
#include "object-store.h"
#include "packfile.h"

int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);

int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{
	struct packed_git p;

	load_idx("fuzz-input", GIT_SHA1_RAWSZ, (void *)data, size, &p);

	return 0;
}
back to top