]> git.ipfire.org Git - thirdparty/git.git/commit - fsck.c
fsck: simplify fsck_commit_buffer() by using commit_list_count()
authorRené Scharfe <l.s.r@web.de>
Thu, 10 Jul 2014 09:48:26 +0000 (11:48 +0200)
committerJunio C Hamano <gitster@pobox.com>
Thu, 10 Jul 2014 21:10:27 +0000 (14:10 -0700)
commit9d02150cf4d833935161ef265e4dc03807caa800
tree771542f24394f4e48e8c0029fce957166644e7cd
parentcb979dbd8fead65e579442c25b620fdc401227b1
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>
fsck.c