]> git.ipfire.org Git - thirdparty/git.git/commit - fsck.c
fsck: accept an oid instead of a "struct commit" for fsck_commit()
authorJeff King <peff@peff.net>
Fri, 18 Oct 2019 05:01:48 +0000 (01:01 -0400)
committerJunio C Hamano <gitster@pobox.com>
Mon, 28 Oct 2019 05:05:18 +0000 (14:05 +0900)
commitc5b4269b57df38b26a3b851833e94abce08583e7
treebf0afcc290a0e2b31399426aea65056d8f2c0829
parent103fb6d43bd6ec7049564cc39e4c0e495f9bfcb8
fsck: accept an oid instead of a "struct commit" for fsck_commit()

We don't actually look at the commit struct in fsck_commit() beyond its
oid and type (which is obviously OBJ_COMMIT). Just taking an oid gives
our callers more flexibility to avoid creating or parsing a struct, and
makes it clear that we are fscking just what is in the buffer, not any
pre-parsed bits from the struct.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
fsck.c