Staging
v0.5.1
Revision 1c52ecf4ba0f4f7af72775695fee653f50737c71 authored by Junio C Hamano on 14 December 2020, 18:30:05 UTC, committed by Junio C Hamano on 14 December 2020, 18:30:05 UTC
Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 3fc7fc1
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