ref-filter: drop unused buf/sz pairs
commite0329199a7b40372dec50a1bc1c497f5fbb2ddbc
authorJeff King <peff@peff.net>
Thu, 14 Feb 2019 05:50:54 +0000 (14 00:50 -0500)
committerJunio C Hamano <gitster@pobox.com>
Thu, 14 Feb 2019 23:26:15 +0000 (14 15:26 -0800)
treede9876503c5597b8e6034e0ec75cf3b2dbc3063b
parent10dee40ed3f6f091be271b45191a40aa560f33bf
ref-filter: drop unused buf/sz pairs

The grab_tag_values() and grab_commit_values() functions take both the
"struct object" as well as the buf/sz pair for the actual object bytes.
However, neither function uses the latter, as they pull the data
directly from the parsed object struct.

Let's get rid of these misleading parameters.

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