There's no need to reset the strbuf immediately after initializing it. Signed-off-by: Martin Ågren <martin.agren@xxxxxxxxx> --- worktree.c | 1 - 1 file changed, 1 deletion(-) diff --git a/worktree.c b/worktree.c index 23dd547e44..64a9e78997 100644 --- a/worktree.c +++ b/worktree.c @@ -552,7 +552,6 @@ const char *worktree_ref(const struct worktree *wt, const char *refname) { static struct strbuf sb = STRBUF_INIT; - strbuf_reset(&sb); strbuf_worktree_ref(wt, &sb, refname); return sb.buf; } -- 2.28.0.277.g9b3c35fffd