On 3/18/2021 1:24 AM, Elijah Newren wrote: > On Tue, Mar 16, 2021 at 2:17 PM Derrick Stolee via GitGitGadget > <gitgitgadget@xxxxxxxxx> wrote: >> >> From: Derrick Stolee <dstolee@xxxxxxxxxxxxx> >> >> Before iterating over all cache entries, ensure that a sparse index is >> expanded to a full index to avoid unexpected behavior. >> >> Signed-off-by: Derrick Stolee <dstolee@xxxxxxxxxxxxx> >> --- >> diff-lib.c | 1 + >> 1 file changed, 1 insertion(+) >> >> diff --git a/diff-lib.c b/diff-lib.c >> index b73cc1859a49..41d6fcec1a81 100644 >> --- a/diff-lib.c >> +++ b/diff-lib.c >> @@ -102,6 +102,7 @@ int run_diff_files(struct rev_info *revs, unsigned int option) >> >> if (diff_unmerged_stage < 0) >> diff_unmerged_stage = 2; >> + >> entries = istate->cache_nr; >> for (i = 0; i < entries; i++) { >> unsigned int oldmode, newmode; > > I don't think adding a blank newline will ensure the index is expanded. ;-) Oops! This is one where I think we determined the loop doesn't need the guard, but I didn't remove the newline and hence the patch wasn't dropped. Thanks, -Stolee