From: Jeff King Date: Sat, 26 Jan 2013 09:42:45 +0000 (-0500) Subject: commit: drop useless xstrdup of commit message X-Git-Tag: v1.8.2-rc0~5^2~3 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=200ebe362cda2a520219f998d4b2c44767992bdb;p=git-core%2Fgit.git commit: drop useless xstrdup of commit message When git-commit is asked to reuse a commit message via "-c", we call read_commit_message, which looks up the commit and hands back either the re-encoded result, or a copy of the original. We make a copy in the latter case so that the ownership semantics of the return value are clear (in either case, it can be freed). However, since we return a "const char *", and since the resulting buffer's lifetime is the same as that of the whole program, we never bother to free it at all. Let's just drop the copy. That saves us a copy in the common case. While it does mean we leak in the re-encode case, it doesn't matter, since we are relying on program exit to free the memory anyway. Signed-off-by: Jeff King Signed-off-by: Junio C Hamano --- diff --git a/builtin/commit.c b/builtin/commit.c index 38b9a9cc0..fbbb40fff 100644 --- a/builtin/commit.c +++ b/builtin/commit.c @@ -962,7 +962,7 @@ static const char *read_commit_message(const char *name) * encodings are identical. */ if (out == NULL) - out = xstrdup(commit->buffer); + out = commit->buffer; return out; }