]> git.ipfire.org Git - thirdparty/git.git/blob - fuzz-commit-graph.c
config.mak.uname: remove unused the NO_R_TO_GCC_LINKER flag
[thirdparty/git.git] / fuzz-commit-graph.c
1 #include "commit-graph.h"
2 #include "repository.h"
3
4 struct commit_graph *parse_commit_graph(struct repository *r,
5 void *graph_map, size_t graph_size);
6
7 int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
8
9 int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
10 {
11 struct commit_graph *g;
12
13 initialize_the_repository();
14 g = parse_commit_graph(the_repository, (void *)data, size);
15 repo_clear(the_repository);
16 free_commit_graph(g);
17
18 return 0;
19 }