summaryrefslogtreecommitdiff
path: root/builtin
diff options
context:
space:
mode:
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>2022-11-19 13:07:31 (GMT)
committerJunio C Hamano <gitster@pobox.com>2022-11-21 03:06:15 (GMT)
commit9c5f3ee3b3a04182cc22630e9eb9fad95bd57fd7 (patch)
treec31a4d9625a82b1ede09040d520fb5ef1a6f37c1 /builtin
parentfbc1ed629e3c71b47a04ab86b88497984bc6acbb (diff)
downloadgit-9c5f3ee3b3a04182cc22630e9eb9fad95bd57fd7.zip
git-9c5f3ee3b3a04182cc22630e9eb9fad95bd57fd7.tar.gz
git-9c5f3ee3b3a04182cc22630e9eb9fad95bd57fd7.tar.bz2
read-cache API & users: make discard_index() return void
The discard_index() function has not returned non-zero since 7a51ed66f65 (Make on-disk index representation separate from in-core one, 2008-01-14), but we've had various code in-tree still acting as though that might be the case. Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin')
-rw-r--r--builtin/merge.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/builtin/merge.c b/builtin/merge.c
index da11dfa..89fdac2 100644
--- a/builtin/merge.c
+++ b/builtin/merge.c
@@ -390,7 +390,8 @@ static void restore_state(const struct object_id *head,
run_command(&cmd);
refresh_cache:
- if (discard_cache() < 0 || read_cache() < 0)
+ discard_cache();
+ if (read_cache() < 0)
die(_("could not read index"));
}