revision: note the lack of free() in simplify_merges()
commitab9d75a8d7e48e03ab0be9fc5e38902f1c173b87
authorJunio C Hamano <gitster@pobox.com>
Fri, 8 Jun 2012 21:50:22 +0000 (8 14:50 -0700)
committerJunio C Hamano <gitster@pobox.com>
Fri, 8 Jun 2012 22:44:38 +0000 (8 15:44 -0700)
tree49dd0d60f1a2c70cc675e52cd4f11462cb5b5609
parenta52f00711321f1c60f9e8ee4434cb5ddc43f6b64
revision: note the lack of free() in simplify_merges()

Among the three similar-looking loops that walk singly linked
commit_list, the first one is only peeking and the same list is
later used for real work.  Leave a comment not to mistakenly
free its elements there.

Signed-off-by: Junio C Hamano <gitster@pobox.com>
revision.c