From b9e6e429378a7763025d1e2f5a1e19d4166ffa05 Mon Sep 17 00:00:00 2001 From: Ramkumar Ramachandra Date: Sun, 23 Oct 2011 00:43:42 +0530 Subject: [PATCH] revert: free msg in format_todo() Memory allocated to the fields of msg by get_message() isn't freed. This is potentially a big leak, because fresh memory is allocated to store the commit message for each commit. Fix this using free_message(). Reported-by: Jonathan Nieder Signed-off-by: Ramkumar Ramachandra Signed-off-by: Junio C Hamano --- builtin/revert.c | 1 + 1 file changed, 1 insertion(+) diff --git a/builtin/revert.c b/builtin/revert.c index 87df70edc3..a6f2ea7e27 100644 --- a/builtin/revert.c +++ b/builtin/revert.c @@ -689,6 +689,7 @@ static int format_todo(struct strbuf *buf, struct commit_list *todo_list, if (get_message(cur->item, &msg)) return error(_("Cannot get commit message for %s"), sha1_abbrev); strbuf_addf(buf, "%s %s %s\n", action_str, sha1_abbrev, msg.subject); + free_message(&msg); } return 0; }