fmt-merge-msg: plug small leak of commit buffer
commit1154aa42159383c3339567f6385c21a615c8b93a
authorJunio C Hamano <gitster@pobox.com>
Wed, 15 Apr 2015 21:18:37 +0000 (15 14:18 -0700)
committerJunio C Hamano <gitster@pobox.com>
Mon, 20 Apr 2015 21:38:07 +0000 (20 14:38 -0700)
tree99560f14e38408fabe2536983d49e986431a2e09
parentbc6b8fc1300ef79c4b4c3c2a79bb3c1e2e032963
fmt-merge-msg: plug small leak of commit buffer

A broken or badly formatted commit might not record author or
committer lines or we may not find a valid name on them.  The
function record_person() returned after calling get_commit_buffer()
without calling unuse_commit_buffer() on the memory it obtained in
such cases, potentially leaking it.

Helped-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
builtin/fmt-merge-msg.c