aboutsummaryrefslogtreecommitdiffstats
path: root/oss-fuzz
diff options
context:
space:
mode:
authorPatrick Steinhardt <ps@pks.im>2024-04-18 14:14:33 +0200
committerJunio C Hamano <gitster@pobox.com>2024-04-18 12:30:43 -0700
commit0c473557908ec626e9e8abf66d2f2308624cdd14 (patch)
tree7ef432ed0cb0253d9fbbbc3f084e4a3ea596bbff /oss-fuzz
parent19fa8cd48c106ded717eeaf145b45e995318f3fe (diff)
downloadgit-0c473557908ec626e9e8abf66d2f2308624cdd14.tar.gz
repository: drop `initialize_the_repository()`
Now that we have dropped `the_index`, `initialize_the_repository()` doesn't really do a lot anymore except for setting up the pointer for `the_repository` and then calling `initialize_repository()`. The former can be replaced by statically initializing the pointer though, which basically makes this function moot. Convert callers to instead call `initialize_repository(the_repository)` and drop `initialize_thee_repository()`. Signed-off-by: Patrick Steinhardt <ps@pks.im> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'oss-fuzz')
-rw-r--r--oss-fuzz/fuzz-commit-graph.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/oss-fuzz/fuzz-commit-graph.c b/oss-fuzz/fuzz-commit-graph.c
index 2992079dd9..fe15e2c225 100644
--- a/oss-fuzz/fuzz-commit-graph.c
+++ b/oss-fuzz/fuzz-commit-graph.c
@@ -11,7 +11,8 @@ int LLVMFuzzerTestOneInput(const uint8_t *data, size_t size)
{
struct commit_graph *g;
- initialize_the_repository();
+ initialize_repository(the_repository);
+
/*
* Initialize the_repository with commit-graph settings that would
* normally be read from the repository's gitdir. We want to avoid