diff options
author | Brandon Casey <casey@nrlssc.navy.mil> | 2008-01-16 13:12:46 -0600 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2008-01-16 15:35:35 -0800 |
commit | 4ed7cd3ab07f7c721daf4241fe1dac306fefd1fb (patch) | |
tree | e3b03a59cd0bca192fb396522f813210451404b8 /builtin-reset.c | |
parent | d6cf61bfd4bccffcc8b095f8469dbe749d70abdf (diff) | |
download | git-4ed7cd3ab07f7c721daf4241fe1dac306fefd1fb.tar.gz |
Improve use of lockfile API
Remove remaining double close(2)'s. i.e. close() before
commit_locked_index() or commit_lock_file().
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin-reset.c')
-rw-r--r-- | builtin-reset.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/builtin-reset.c b/builtin-reset.c index 10dba60c39..7ee811f0b8 100644 --- a/builtin-reset.c +++ b/builtin-reset.c @@ -108,7 +108,6 @@ static int update_index_refresh(int fd, struct lock_file *index_lock) return error("Could not read index"); result = refresh_cache(0) ? 1 : 0; if (write_cache(fd, active_cache, active_nr) || - close(fd) || commit_locked_index(index_lock)) return error ("Could not refresh index"); return result; |