commit | 9d02150cf4d833935161ef265e4dc03807caa800 | [log] [tgz] |
---|---|---|
author | René Scharfe <l.s.r@web.de> | Thu Jul 10 11:48:26 2014 +0200 |
committer | Junio C Hamano <gitster@pobox.com> | Thu Jul 10 14:10:27 2014 -0700 |
tree | 771542f24394f4e48e8c0029fce957166644e7cd | |
parent | cb979dbd8fead65e579442c25b620fdc401227b1 [diff] |
fsck: simplify fsck_commit_buffer() by using commit_list_count() fsck_commit_buffer() checks that the number of items in the parents list of a commit matches the number of parent lines in its buffer or -- if a graft is used -- the number of parents in that graft. Simplify the code by using commit_list_count() instead of counting by hand. Also use different variables for the number of lines and the number of list items, making it easier to compare them. Signed-off-by: Rene Scharfe <l.s.r@web.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>