Git development
 help / color / mirror / Atom feed
* [PATCH] parse-options: fix sparse 'plain integer as NULL pointer'
@ 2026-04-23 16:05 Ramsay Jones
  2026-04-24  2:47 ` Junio C Hamano
  0 siblings, 1 reply; 4+ messages in thread
From: Ramsay Jones @ 2026-04-23 16:05 UTC (permalink / raw)
  To: Jiamu Sun; +Cc: GIT Mailing-list, Junio C Hamano


Signed-off-by: Ramsay Jones <ramsay@ramsayjones.plus.com>
---

Hi Jiamu Sun,

If you need to re-roll your 'js/parseopt-subcommand-autocorrection'
branch, could you please squash this into the patch corresponding
to commit b9e6a2d30a ("parseopt: autocorrect mistyped subcommands",
2026-04-23).

Thanks.

ATB,
Ramsay Jones

 parse-options.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/parse-options.c b/parse-options.c
index d60e7bd3c9..14f3f385eb 100644
--- a/parse-options.c
+++ b/parse-options.c
@@ -658,7 +658,7 @@ static const char *autocorrect_subcommand(const char *cmd,
 
 	for_each_string_list_item(cand, cmds) {
 		if (starts_with(cand->string, cmd)) {
-			cand->util = 0;
+			cand->util = NULL;
 		} else {
 			int edit = levenshtein(cmd, cand->string,
 					       0, 2, 1, 3) + 1;
-- 
2.54.0

^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-04-29  5:13 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-23 16:05 [PATCH] parse-options: fix sparse 'plain integer as NULL pointer' Ramsay Jones
2026-04-24  2:47 ` Junio C Hamano
2026-04-26 12:14   ` Johannes Schindelin
2026-04-29  5:13     ` Jiamu Sun

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox