Staging
v0.5.1
Revision f2771efd07b51edae023db95fcca39c72a0397fe authored by Jonathan Nieder on 19 April 2020, 23:30:27 UTC, committed by Jonathan Nieder on 19 April 2020, 23:30:27 UTC
This merges up the security fix from v2.17.5.

Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
2 parent s 17a0278 + c9808fa
Raw File
fuzz-commit-graph.c
#include "commit-graph.h"
#include "repository.h"

struct commit_graph *parse_commit_graph(void *graph_map, int fd,
					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((void *)data, -1, size);
	repo_clear(the_repository);
	free(g);

	return 0;
}
back to top