From: Michael Haggerty Date: Mon, 17 Oct 2011 02:38:11 +0000 (+0200) Subject: clear_ref_cache(): inline function X-Git-Tag: v1.7.8-rc0~20^2 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=c5f29abd8098275382ff56d8cbb00d660a64b43e;p=git.git clear_ref_cache(): inline function clear_ref_cache() was only called from one place, so inline it there. Signed-off-by: Michael Haggerty Signed-off-by: Junio C Hamano --- diff --git a/refs.c b/refs.c index a888cea56..d8a4fa33e 100644 --- a/refs.c +++ b/refs.c @@ -172,12 +172,6 @@ static void clear_loose_ref_cache(struct ref_cache *refs) refs->did_loose = 0; } -static void clear_ref_cache(struct ref_cache *refs) -{ - clear_packed_ref_cache(refs); - clear_loose_ref_cache(refs); -} - static struct ref_cache *create_ref_cache(const char *submodule) { int len; @@ -215,7 +209,9 @@ static struct ref_cache *get_ref_cache(const char *submodule) void invalidate_ref_cache(const char *submodule) { - clear_ref_cache(get_ref_cache(submodule)); + struct ref_cache *refs = get_ref_cache(submodule); + clear_packed_ref_cache(refs); + clear_loose_ref_cache(refs); } static void read_packed_refs(FILE *f, struct ref_array *array)