summaryrefslogtreecommitdiff
path: root/src/libgit2/repository.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libgit2/repository.c')
-rw-r--r--src/libgit2/repository.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/libgit2/repository.c b/src/libgit2/repository.c
index 809617276..c36666c43 100644
--- a/src/libgit2/repository.c
+++ b/src/libgit2/repository.c
@@ -735,13 +735,6 @@ static int load_grafts(git_repository *repo)
git_str path = GIT_STR_INIT;
int error;
- if ((error = git_repository__item_path(&path, repo, GIT_REPOSITORY_ITEM_INFO)) < 0 ||
- (error = git_str_joinpath(&path, path.ptr, "grafts")) < 0 ||
- (error = git_grafts_from_file(&repo->grafts, path.ptr)) < 0)
- goto error;
-
- git_str_clear(&path);
-
if ((error = git_str_joinpath(&path, repo->gitdir, "shallow")) < 0 ||
(error = git_grafts_from_file(&repo->shallow_grafts, path.ptr)) < 0)
goto error;