diff mbox series

builtin/worktree.c: fix a sparse '0 as NULL pointer' warning

Message ID 89e22af5-227f-7a38-372a-af2fe7d42be2@ramsayjones.plus.com (mailing list archive)
State New, archived
Headers show
Series builtin/worktree.c: fix a sparse '0 as NULL pointer' warning | expand

Commit Message

Ramsay Jones June 9, 2020, 11:52 p.m. UTC
Signed-off-by: Ramsay Jones <ramsay@ramsayjones.plus.com>
---

Hi Eric,

If you need to re-roll your 'es/worktree-duplicate-paths' branch, could you
please squash this into the relevant patch (commit 71806ee9e8 (worktree: prune
linked worktree referencing main worktree path, 2020-06-08)).

Note that this is based on top of the 'pu' branch, and Junio has a fixup
patch (commit 4b01d684fe (SQUASH??? -Werror=main, 2020-06-08)) which also
changes this line of code (s/main/main_path/).

Thanks!

ATB,
Ramsay Jones

 builtin/worktree.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Eric Sunshine June 10, 2020, 4:15 a.m. UTC | #1
On Tue, Jun 9, 2020 at 7:53 PM Ramsay Jones <ramsay@ramsayjones.plus.com> wrote:
> If you need to re-roll your 'es/worktree-duplicate-paths' branch, could you
> please squash this into the relevant patch (commit 71806ee9e8 (worktree: prune
> linked worktree referencing main worktree path, 2020-06-08)).

Thanks, I'll apply this change when I re-roll.

> Note that this is based on top of the 'pu' branch, and Junio has a fixup
> patch (commit 4b01d684fe (SQUASH??? -Werror=main, 2020-06-08)) which also
> changes this line of code (s/main/main_path/).

Indeed, I saw Junio's SQUASH and was planning on applying that, as well.
diff mbox series

Patch

diff --git a/builtin/worktree.c b/builtin/worktree.c
index 7762333228..2d8540bdae 100644
--- a/builtin/worktree.c
+++ b/builtin/worktree.c
@@ -199,7 +199,7 @@  static void prune_worktrees(void)
 	strbuf_add_absolute_path(&main_path, get_git_common_dir());
 	/* massage main worktree absolute path to match 'gitdir' content */
 	strbuf_strip_suffix(&main_path, "/.");
-	string_list_append(&kept, strbuf_detach(&main_path, 0));
+	string_list_append(&kept, strbuf_detach(&main_path, NULL));
 	prune_dups(&kept);
 	string_list_clear(&kept, 1);