aboutsummaryrefslogtreecommitdiff
path: root/builtin/merge.c
diff options
context:
space:
mode:
authorMichael Haggerty <mhagger@alum.mit.edu>2014-10-01 12:28:29 +0200
committerJunio C Hamano <gitster@pobox.com>2014-10-01 13:49:00 -0700
commit1fef4b5041e0144e476ffcc8c559bf06fa80340c (patch)
treefa5c24d9b573a6948c96af079ad850003006be20 /builtin/merge.c
parent2091c5062c6fd928e1ad3e7c059243e597cb8bbf (diff)
downloadgit-1fef4b5041e0144e476ffcc8c559bf06fa80340c.tar.gz
git-1fef4b5041e0144e476ffcc8c559bf06fa80340c.tar.xz
try_merge_strategy(): remove redundant lock_file allocation
By the time the "if" block is entered, the lock_file instance from the main function block is no longer in use, so re-use that one instead of allocating a second one. Note that the "lock" variable in the "if" block shadowed the "lock" variable at function scope, so the only change needed is to remove the inner definition. Signed-off-by: Michael Haggerty <mhagger@alum.mit.edu> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'builtin/merge.c')
-rw-r--r--builtin/merge.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/builtin/merge.c b/builtin/merge.c
index dff043dac..1ec39394a 100644
--- a/builtin/merge.c
+++ b/builtin/merge.c
@@ -668,7 +668,6 @@ static int try_merge_strategy(const char *strategy, struct commit_list *common,
if (!strcmp(strategy, "recursive") || !strcmp(strategy, "subtree")) {
int clean, x;
struct commit *result;
- struct lock_file *lock = xcalloc(1, sizeof(struct lock_file));
struct commit_list *reversed = NULL;
struct merge_options o;
struct commit_list *j;