Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
rollback_lock_file(): exit early if lock is not active
author
Michael Haggerty
<mhagger@alum.mit.edu>
Wed, 1 Oct 2014 10:28:09 +0000
(12:28 +0200)
committer
Junio C Hamano
<gitster@pobox.com>
Wed, 1 Oct 2014 20:38:40 +0000
(13:38 -0700)
Eliminate a layer of nesting.
Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu>
Reviewed-by: Ronnie Sahlberg <sahlberg@google.com>
Reviewed-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
lockfile.c
patch
|
blob
|
history
raw
|
patch
| inline |
side by side
(parent:
5527d53
)
diff --git
a/lockfile.c
b/lockfile.c
index 5330d6ae52ad6693c77fa31d24a51f7448597d34..e55149a73ac05298861f8820945b89200da5f177 100644
(file)
--- a/
lockfile.c
+++ b/
lockfile.c
@@
-276,10
+276,11
@@
int hold_locked_index(struct lock_file *lk, int die_on_error)
void rollback_lock_file(struct lock_file *lk)
{
- if (lk->filename[0]) {
- if (lk->fd >= 0)
- close(lk->fd);
- unlink_or_warn(lk->filename);
- lk->filename[0] = 0;
- }
+ if (!lk->filename[0])
+ return;
+
+ if (lk->fd >= 0)
+ close(lk->fd);
+ unlink_or_warn(lk->filename);
+ lk->filename[0] = 0;
}