Re: [PATCH v2 2/4] worktree: link worktrees with relative paths
From: Caleb White <hidden>
Date: 2024-10-07 16:59:32
Attachments
- signature.asc [application/pgp-signature] 509 bytes
From: Caleb White <hidden>
Date: 2024-10-07 16:59:32
On Sunday, October 6th, 2024 at 22:45, shejialuo [off-list ref] wrote:
You don't need to create a new "strbuf" for each of the paths. You could just use "strbuf_reset" for only one "struct strbuf".
struct strbuf file = STRBUF_INIT;
if (...) {
strbuf_addf(...);
strbuf_reset(&file);
strbuf_addf(...);}
strbuf_release(&file);
Ah, this is a better design---I've updated this to use a single strbuf, thanks!