Skip to content

Commit

Permalink
revert: Simplify and inline add_message_to_msg
Browse files Browse the repository at this point in the history
The add_message_to_msg function has some dead code, an unclear API,
only one callsite.  While it originally intended fill up an empty
commit message with the commit object name while picking, it really
doesn't do this -- a bug introduced in v1.5.1-rc1~65^2~2 (Make
git-revert & git-cherry-pick a builtin, 2007-03-01).  Today, tests in
t3505-cherry-pick-empty.sh indicate that not filling up an empty
commit message is the desired behavior.  Re-implement and inline the
function accordingly, with a beneficial side-effect: don't dereference
a NULL pointer when the commit doesn't have a delimeter after the
header.

Helped-by: Junio C Hamano <gitster@pobox.com>
Mentored-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Ramkumar Ramachandra <artagnon@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
  • Loading branch information
Ramkumar Ramachandra authored and Junio C Hamano committed Aug 4, 2011
1 parent 5ec3118 commit be33c46
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions builtin/revert.c
Original file line number Diff line number Diff line change
Expand Up @@ -185,19 +185,6 @@ static char *get_encoding(const char *message)
return NULL;
}

static void add_message_to_msg(struct strbuf *msgbuf, const char *message)
{
const char *p = message;
while (*p && (*p != '\n' || p[1] != '\n'))
p++;

if (!*p)
strbuf_addstr(msgbuf, sha1_to_hex(commit->object.sha1));

p += 2;
strbuf_addstr(msgbuf, p);
}

static void write_cherry_pick_head(void)
{
int fd;
Expand Down Expand Up @@ -462,11 +449,24 @@ static int do_pick_commit(void)
}
strbuf_addstr(&msgbuf, ".\n");
} else {
const char *p;

base = parent;
base_label = msg.parent_label;
next = commit;
next_label = msg.label;
add_message_to_msg(&msgbuf, msg.message);

/*
* Append the commit log message to msgbuf; it starts
* after the tree, parent, author, committer
* information followed by "\n\n".
*/
p = strstr(msg.message, "\n\n");
if (p) {
p += 2;
strbuf_addstr(&msgbuf, p);
}

if (no_replay) {
strbuf_addstr(&msgbuf, "(cherry picked from commit ");
strbuf_addstr(&msgbuf, sha1_to_hex(commit->object.sha1));
Expand Down

0 comments on commit be33c46

Please sign in to comment.