]> granicus.if.org Git - git/commit
fsck: accept an oid instead of a "struct tag" for fsck_tag()
authorJeff King <peff@peff.net>
Fri, 18 Oct 2019 05:01:26 +0000 (01:01 -0400)
committerJunio C Hamano <gitster@pobox.com>
Fri, 25 Oct 2019 03:23:55 +0000 (12:23 +0900)
commit5de6dd793c2d18745ff76d4975c052a1750b00af
treea3469511245c8e9e049db715cf614ceb41cdbcd2
parentbd70ceacd2b8b0a0052445d5e5cb46ed1c543250
fsck: accept an oid instead of a "struct tag" for fsck_tag()

We don't actually look at the tag struct in fsck_tag() beyond its oid
and type (which is obviously OBJ_TAG). 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