remove_lock_file(): call rollback_lock_file()
[gitweb.git] / lockfile.c
index a8f32e5495d8b064e921e73fa4268f11d19b1c2b..f8205f6b03b0e25a580d7b0d5b3d79caf4db53e8 100644 (file)
@@ -53,12 +53,8 @@ static void remove_lock_file(void)
        pid_t me = getpid();
 
        while (lock_file_list) {
-               if (lock_file_list->owner == me &&
-                   lock_file_list->filename[0]) {
-                       if (lock_file_list->fd >= 0)
-                               close(lock_file_list->fd);
-                       unlink_or_warn(lock_file_list->filename);
-               }
+               if (lock_file_list->owner == me)
+                       rollback_lock_file(lock_file_list);
                lock_file_list = lock_file_list->next;
        }
 }