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

fuzz-pack-idx.c « oss-fuzz - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 3e190214d1487e4bd1f04315698e0f041402648e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "git-compat-util.h"
#include "object-store-ll.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;
}