rollback_lock_file(): set fd to -1
[gitweb.git] / 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;
 }