aboutsummaryrefslogtreecommitdiff
path: root/lockfile.c
diff options
context:
space:
mode:
authorMichael Haggerty <mhagger@alum.mit.edu>2014-10-01 12:28:10 +0200
committerJunio C Hamano <gitster@pobox.com>2014-10-01 13:38:41 -0700
commit26f5d3b65fa1b40be570a67f1aaca0e2f085d568 (patch)
tree3bf0c8501b1b576ef8a3dd57b1cd1d6141b660bf /lockfile.c
parent9085f8e279146a31ea8bbd102b6c97f5cb22dcdc (diff)
downloadgit-26f5d3b65fa1b40be570a67f1aaca0e2f085d568.tar.gz
git-26f5d3b65fa1b40be570a67f1aaca0e2f085d568.tar.xz
rollback_lock_file(): set fd to -1
When rolling back the lockfile, call close_lock_file() so that the lock_file's fd field gets set back to -1. This keeps the lock_file object in a valid state, which is important because these objects are allowed to be reused. It also makes it unnecessary to check whether the file has already been closed, because close_lock_file() takes care of that. Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Reviewed-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'lockfile.c')
-rw-r--r--lockfile.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/lockfile.c b/lockfile.c
index e55149a73..3df1e8306 100644
--- a/lockfile.c
+++ b/lockfile.c
@@ -279,8 +279,7 @@ void rollback_lock_file(struct lock_file *lk)
if (!lk->filename[0])
return;
- if (lk->fd >= 0)
- close(lk->fd);
+ close_lock_file(lk);
unlink_or_warn(lk->filename);
lk->filename[0] = 0;
}