commit | b000c59b0c80fc187e5e0e48dc9396cd60576c4e | [log] [tgz] |
---|---|---|
author | Jeff King <peff@peff.net> | Tue Jun 10 17:39:30 2014 -0400 |
committer | Junio C Hamano <gitster@pobox.com> | Thu Jun 12 10:29:43 2014 -0700 |
tree | eceae4f00fdd8ddc384ec7d04739686e7b3ea4e1 | |
parent | 10322a0aaf84382d8901f9ab59e59c39f0c035bb [diff] |
logmsg_reencode: return const buffer The return value from logmsg_reencode may be either a newly allocated buffer or a pointer to the existing commit->buffer. We would not want the caller to accidentally free() or modify the latter, so let's mark it as const. We can cast away the constness in logmsg_free, but only once we have determined that it is a free-able buffer. Signed-off-by: Jeff King <peff@peff.net> Signed-off-by: Junio C Hamano <gitster@pobox.com>