Welcome to mirror list, hosted at ThFree Co, Russian Federation.

fuzz-pack-idx.c - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 0c3d777aac8de618a36777c5c82edae302c1bbcc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#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;
}