From 4f4713df94e2f3d3adbd39b8fce571e2bd69185e Mon Sep 17 00:00:00 2001 From: Michael Haggerty Date: Wed, 1 Oct 2014 12:28:20 +0200 Subject: commit_lock_file(): inline temporary variable Signed-off-by: Michael Haggerty Signed-off-by: Junio C Hamano --- lockfile.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'lockfile.c') diff --git a/lockfile.c b/lockfile.c index f8205f6b03..e148227fb1 100644 --- a/lockfile.c +++ b/lockfile.c @@ -300,12 +300,14 @@ int reopen_lock_file(struct lock_file *lk) int commit_lock_file(struct lock_file *lk) { char result_file[PATH_MAX]; - size_t i; + if (close_lock_file(lk)) return -1; + strcpy(result_file, lk->filename); - i = strlen(result_file) - LOCK_SUFFIX_LEN; /* .lock */ - result_file[i] = 0; + /* remove ".lock": */ + result_file[strlen(result_file) - LOCK_SUFFIX_LEN] = 0; + if (rename(lk->filename, result_file)) return -1; lk->filename[0] = 0; -- cgit v1.2.3