]> git.ipfire.org Git - thirdparty/git.git/commitdiff
reflog: don't be noisy on empty reflogs
authorÆvar Arnfjörð Bjarmason <avarab@gmail.com>
Thu, 10 Mar 2022 22:56:11 +0000 (23:56 +0100)
committerJunio C Hamano <gitster@pobox.com>
Sun, 13 Mar 2022 18:37:08 +0000 (18:37 +0000)
Fix a regression in my daf1d8285ee (reflog expire: don't use
lookup_commit_reference_gently(), 2021-12-22), in changing from
lookup_commit_reference_gently() to lookup_commit() we stopped trying
to call deref_tag() and parse_object() on the provided OID, but we
also started returning non-NULL for the null_oid().

As a result we'd emit an error() via mark_reachable() later in this
function as we tried to invoke parse_commit() on it.

Reported-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Tested-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/reflog.c
t/t1410-reflog.sh

index a4b1dd27e13c93c670489f11c7c20b980952ba2a..83a98cface768719d0abde9679af11dbc1cd0092 100644 (file)
@@ -382,6 +382,8 @@ static void reflog_expiry_prepare(const char *refname,
                cb->unreachable_expire_kind = UE_HEAD;
        } else {
                commit = lookup_commit(the_repository, oid);
+               if (commit && is_null_oid(&commit->object.oid))
+                       commit = NULL;
                cb->unreachable_expire_kind = commit ? UE_NORMAL : UE_ALWAYS;
        }
 
index d42f067ff8ca0feefcb7cc28a6fc549bd31827bd..7d5cfeb8bf2a41db85465bf28f4fed7d997e8cc0 100755 (executable)
@@ -422,4 +422,13 @@ test_expect_success 'expire with multiple worktrees' '
        )
 '
 
+test_expect_success REFFILES 'empty reflog' '
+       test_when_finished "rm -rf empty" &&
+       git init empty &&
+       test_commit -C empty A &&
+       >empty/.git/logs/refs/heads/foo &&
+       git -C empty reflog expire --all 2>err &&
+       test_must_be_empty err
+'
+
 test_done