Thread (2 messages) flat view 2 messages, 2 authors, 2016-06-15

Re: [PATCH v3] cherry-pick: don't forget -s on failure

From: Junio C Hamano <hidden>
Date: 2016-06-15 22:54:44

Possibly related (same subject, not in this thread)

Miklos Vajna [off-list ref] writes:
+void append_signoff(struct strbuf *msgbuf, int ignore_footer)
+{
+	struct strbuf sob = STRBUF_INIT;
+	int i;
+
+	strbuf_addstr(&sob, sign_off_header);
+	strbuf_addstr(&sob, fmt_name(getenv("GIT_COMMITTER_NAME"),
+				getenv("GIT_COMMITTER_EMAIL")));
+	strbuf_addch(&sob, '\n');
+	for (i = msgbuf->len - 1 - ignore_footer; i > 0 && msgbuf->buf[i - 1] != '\n'; i--)
+		; /* do nothing */
+	struct strbuf footer = STRBUF_INIT;
+	if (ignore_footer > 0) {
+		strbuf_addstr(&footer, msgbuf->buf + msgbuf->len - ignore_footer);
+		strbuf_setlen(msgbuf, msgbuf->len - ignore_footer);
+	}
That's decl-after-stmt.

I would have expected that you can just do strbuf_splice() to add
the &sob into &msgbuf with the original code structure, without a
substantial rewrite of the function like this.  Perhaps I am missing
something?
Keyboard shortcuts
hback out one level
jnext message in thread
kprevious message in thread
ldrill in
Escclose help / fold thread tree
?toggle this help