mirror of
https://github.com/git/git.git
synced 2024-11-24 02:17:02 +08:00
Merge branch 'rs/reflog-expiry-cleanup'
Code clean-up. * rs/reflog-expiry-cleanup: reflog: clear leftovers in reflog_expiry_cleanup()
This commit is contained in:
commit
b0c61be320
4
reflog.c
4
reflog.c
@ -193,7 +193,6 @@ static void mark_reachable(struct expire_reflog_policy_cb *cb)
|
||||
commit_list_insert(commit, &leftover);
|
||||
continue;
|
||||
}
|
||||
commit->object.flags |= REACHABLE;
|
||||
parent = commit->parents;
|
||||
while (parent) {
|
||||
commit = parent->item;
|
||||
@ -371,6 +370,9 @@ void reflog_expiry_cleanup(void *cb_data)
|
||||
clear_commit_marks(cb->tip_commit, REACHABLE);
|
||||
break;
|
||||
}
|
||||
for (elem = cb->mark_list; elem; elem = elem->next)
|
||||
clear_commit_marks(elem->item, REACHABLE);
|
||||
free_commit_list(cb->mark_list);
|
||||
}
|
||||
|
||||
int count_reflog_ent(struct object_id *ooid UNUSED,
|
||||
|
Loading…
Reference in New Issue
Block a user