diff options
author | Eric Sunshine <sunshine@sunshineco.com> | 2020-08-01 01:32:11 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2020-08-01 04:56:10 +0200 |
commit | 62573a57f0919f4d1129962b09462946e69025ff (patch) | |
tree | ff1eace7ce5da36d41e36140f7a86baa70c21fff /worktree.c | |
parent | Git 2.28 (diff) | |
download | git-62573a57f0919f4d1129962b09462946e69025ff.tar.xz git-62573a57f0919f4d1129962b09462946e69025ff.zip |
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 <sunshine@sunshineco.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'worktree.c')
-rw-r--r-- | worktree.c | 2 |
1 files changed, 0 insertions, 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; } |