Merge branch 'tb/pack-revindex-on-disk'

Fix for a topic in 'master'.

* tb/pack-revindex-on-disk:
  pack-revindex.c: don't close unopened file descriptors
maint
Junio C Hamano 2021-03-14 16:01:40 -07:00
commit 074d162eff
1 changed files with 2 additions and 1 deletions

View File

@ -253,7 +253,8 @@ cleanup:
*data_p = (const uint32_t *)data;
}

close(fd);
if (fd >= 0)
close(fd);
return ret;
}