From 62573a57f0919f4d1129962b09462946e69025ff Mon Sep 17 00:00:00 2001 From: Eric Sunshine Date: Fri, 31 Jul 2020 19:32:11 -0400 Subject: [PATCH] worktree: drop pointless strbuf_release() The content of this strbuf is unconditionally detached several lines before the strbuf_release() and the strbuf is never touched again after that point. Signed-off-by: Eric Sunshine Signed-off-by: Junio C Hamano --- worktree.c | 2 -- 1 file changed, 2 deletions(-) diff --git a/worktree.c b/worktree.c index cba2e54598..c0df5e2c79 100644 --- a/worktree.c +++ b/worktree.c @@ -66,8 +66,6 @@ static struct worktree *get_main_worktree(void) worktree->is_bare = (is_bare_repository_cfg == 1) || is_bare_repository(); add_head_info(worktree); - - strbuf_release(&worktree_path); return worktree; } -- 2.32.0.93.g670b81a890