diff options
author | René Scharfe <l.s.r@web.de> | 2019-01-06 17:45:39 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2019-01-08 18:40:19 +0100 |
commit | d4e19e516325e211cedb070a487453ad2d1043be (patch) | |
tree | aab53eee02f9c5219df3d85060fc9cdff9763fe7 /packfile.c | |
parent | object-store: factor out odb_loose_cache() (diff) | |
download | git-d4e19e516325e211cedb070a487453ad2d1043be.tar.xz git-d4e19e516325e211cedb070a487453ad2d1043be.zip |
object-store: factor out odb_clear_loose_cache()
Add and use a function for emptying the loose object cache, so callers
don't have to know any of its implementation details.
Signed-off-by: Rene Scharfe <l.s.r@web.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'packfile.c')
-rw-r--r-- | packfile.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/packfile.c b/packfile.c index 8c6b47cc77..0fe9c21bf1 100644 --- a/packfile.c +++ b/packfile.c @@ -994,11 +994,8 @@ void reprepare_packed_git(struct repository *r) { struct object_directory *odb; - for (odb = r->objects->odb; odb; odb = odb->next) { - oid_array_clear(&odb->loose_objects_cache); - memset(&odb->loose_objects_subdir_seen, 0, - sizeof(odb->loose_objects_subdir_seen)); - } + for (odb = r->objects->odb; odb; odb = odb->next) + odb_clear_loose_cache(odb); r->objects->approximate_object_count_valid = 0; r->objects->packed_git_initialized = 0; |