]> granicus.if.org Git - git/commitdiff
rollback_lock_file(): set fd to -1
authorMichael Haggerty <mhagger@alum.mit.edu>
Wed, 1 Oct 2014 10:28:10 +0000 (12:28 +0200)
committerJunio C Hamano <gitster@pobox.com>
Wed, 1 Oct 2014 20:38:41 +0000 (13:38 -0700)
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>
lockfile.c

index e55149a73ac05298861f8820945b89200da5f177..3df1e8306a4471e3c2868f16609bb70a5f106ca1 100644 (file)
@@ -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;
 }