]> git.ipfire.org Git - thirdparty/git.git/commit - apply.c
apply: only pass required data to skip_tree_prefix
authorThomas Gummerer <t.gummerer@gmail.com>
Mon, 8 Jul 2019 16:33:03 +0000 (17:33 +0100)
committerJunio C Hamano <gitster@pobox.com>
Tue, 9 Jul 2019 18:29:02 +0000 (11:29 -0700)
commitd6c88c4fdc1ce189e4abad56f9e3b16d2f831867
treed5de22698057b2bdd16c291ffd1612eae3ed60d6
parent5af40877a4354156b311060eb6594cb5159e0577
apply: only pass required data to skip_tree_prefix

Currently the 'skip_tree_prefix()' function takes 'struct apply_state'
as parameter, even though it only needs the p_value from that struct.

This function is in the callchain of 'parse_git_header()', which we
want to make more generally useful in a subsequent commit.  To make
that happen we only want to pass in the required data to
'parse_git_header()', and not the whole 'struct apply_state', and thus
we want functions in the callchain of 'parse_git_header()' to only
take arguments they really need.

Signed-off-by: Thomas Gummerer <t.gummerer@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
apply.c