strbuf: use strbuf_addstr() for adding C strings
Avoid code duplication and let strbuf_addstr() call strlen() for us. Signed-off-by: Rene Scharfe <l.s.r@web.de> Reviewed-by: Jonathan Nieder <jrnieder@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
This commit is contained in:

committed by
Junio C Hamano

parent
9d02150cf4
commit
cedc61a998
@ -707,7 +707,7 @@ static int prepare_to_commit(const char *index_file, const char *prefix,
|
||||
char *buffer;
|
||||
buffer = strstr(use_message_buffer, "\n\n");
|
||||
if (buffer)
|
||||
strbuf_add(&sb, buffer + 2, strlen(buffer + 2));
|
||||
strbuf_addstr(&sb, buffer + 2);
|
||||
hook_arg1 = "commit";
|
||||
hook_arg2 = use_message;
|
||||
} else if (fixup_message) {
|
||||
|
Reference in New Issue
Block a user