Revision cb95038137e9e66fc6a6b4a0e8db62bcc521b709 authored by Johannes Schindelin on 17 March 2022, 09:15:15 UTC, committed by Johannes Schindelin on 23 March 2022, 23:22:17 UTC
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
1 parent fdcad5a
Raw File
fuzz-commit-graph.c
#include "commit-graph.h"
#include "repository.h"

struct commit_graph *parse_commit_graph(struct repository *r,
					void *graph_map, size_t graph_size);

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

int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{
	struct commit_graph *g;

	initialize_the_repository();
	g = parse_commit_graph(the_repository, (void *)data, size);
	repo_clear(the_repository);
	free_commit_graph(g);

	return 0;
}
back to top