2019-01-15 22:25:50 +00:00
|
|
|
#include "commit-graph.h"
|
2019-02-07 20:05:53 +00:00
|
|
|
#include "repository.h"
|
2019-01-15 22:25:50 +00:00
|
|
|
|
2020-09-09 15:22:56 +00:00
|
|
|
struct commit_graph *parse_commit_graph(struct repository *r,
|
|
|
|
void *graph_map, size_t graph_size);
|
2019-01-15 22:25:50 +00:00
|
|
|
|
|
|
|
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size);
|
|
|
|
|
|
|
|
int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
|
|
|
|
{
|
|
|
|
struct commit_graph *g;
|
|
|
|
|
2019-02-07 20:05:53 +00:00
|
|
|
initialize_the_repository();
|
2020-09-09 15:22:56 +00:00
|
|
|
g = parse_commit_graph(the_repository, (void *)data, size);
|
2019-02-07 20:05:53 +00:00
|
|
|
repo_clear(the_repository);
|
2020-06-05 22:55:14 +00:00
|
|
|
free_commit_graph(g);
|
2019-01-15 22:25:50 +00:00
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|