"Derrick Stolee via GitGitGadget" <gitgitgadget@xxxxxxxxx> writes: > diff --git a/builtin/repack.c b/builtin/repack.c > index c6a7943d5c..7925bb976e 100644 > --- a/builtin/repack.c > +++ b/builtin/repack.c > @@ -432,6 +432,10 @@ int cmd_repack(int argc, const char **argv, const char *prefix) > > if (!midx_cleared) { > /* if we move a packfile, it will invalidated the midx */ > + if (the_repository->objects) { > + close_midx(the_repository->objects->multi_pack_index); > + the_repository->objects->multi_pack_index = NULL; > + } > clear_midx_file(get_object_directory()); > midx_cleared = 1; It somehow looks like a bit of layering violation, doesn't it? When we are clearing a midx file, don't we always want to do this as well?