From: René Scharfe Date: Sun, 25 Aug 2019 13:26:40 +0000 (+0200) Subject: grep: use return value of strbuf_detach() X-Git-Url: https://git.lorimer.id.au/gitweb.git/diff_plain/fd99c2dd9b0b24fe4bb36366a6b1ff9e29b29286 grep: use return value of strbuf_detach() Append the strbuf buffer only after detaching it. There is no practical difference here, as the strbuf is not empty and no strbuf_ function is called between storing the pointer to the still attached buffer and calling strbuf_detach(), so that pointer is valid, but make sure to follow the standard sequence anyway for consistency. Signed-off-by: René Scharfe Acked-by: Johannes Schindelin Signed-off-by: Junio C Hamano --- diff --git a/builtin/grep.c b/builtin/grep.c index 2699001fbd..69ac053acc 100644 --- a/builtin/grep.c +++ b/builtin/grep.c @@ -1110,8 +1110,8 @@ int cmd_grep(int argc, const char **argv, const char *prefix) strbuf_addf(&buf, "+/%s%s", strcmp("less", pager) ? "" : "*", opt.pattern_list->pattern); - string_list_append(&path_list, buf.buf); - strbuf_detach(&buf, NULL); + string_list_append(&path_list, + strbuf_detach(&buf, NULL)); } }