clear_cached_refs() was only called from one place, so inline it there. Signed-off-by: Michael Haggerty <mhagger@xxxxxxxxxxxx> --- refs.c | 10 +++------- 1 files changed, 3 insertions(+), 7 deletions(-) diff --git a/refs.c b/refs.c index 9e9edf7..409314d 100644 --- a/refs.c +++ b/refs.c @@ -172,12 +172,6 @@ static void clear_cached_loose_refs(struct cached_refs *refs) refs->did_loose = 0; } -static void clear_cached_refs(struct cached_refs *refs) -{ - clear_cached_packed_refs(refs); - clear_cached_loose_refs(refs); -} - static struct cached_refs *create_cached_refs(const char *submodule) { int len; @@ -215,7 +209,9 @@ static struct cached_refs *get_cached_refs(const char *submodule) void invalidate_ref_cache(const char *submodule) { - clear_cached_refs(get_cached_refs(submodule)); + struct cached_refs *refs = get_cached_refs(submodule); + clear_cached_packed_refs(refs); + clear_cached_loose_refs(refs); } static void read_packed_refs(FILE *f, struct ref_array *array) -- 1.7.7.rc2 -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html