]> git.ipfire.org Git - thirdparty/git.git/commit - cache.h
split-index: don't write cache tree with null oid entries
authorThomas Gummerer <t.gummerer@gmail.com>
Sun, 7 Jan 2018 22:30:14 +0000 (22:30 +0000)
committerJunio C Hamano <gitster@pobox.com>
Fri, 19 Jan 2018 18:36:39 +0000 (10:36 -0800)
commit4bddd98311f249e9ed8a9b6379c7a097201612d1
tree7800bc3c00d4a6e33931d81b3c32e07604e4865a
parenta125a223347a8d43fffc1b7ec2bec93d88ec17b7
split-index: don't write cache tree with null oid entries

In a96d3cc3f6 ("cache-tree: reject entries with null sha1", 2017-04-21)
we made sure that broken cache entries do not get propagated to new
trees.  Part of that was making sure not to re-use an existing cache
tree that includes a null oid.

It did so by dropping the cache tree in 'do_write_index()' if one of
the entries contains a null oid.  In split index mode however, there
are two invocations to 'do_write_index()', one for the shared index
and one for the split index.  The cache tree is only written once, to
the split index.

As we only loop through the elements that are effectively being
written by the current invocation, that may not include the entry with
a null oid in the split index (when it is already written to the
shared index), where we write the cache tree.  Therefore in split
index mode we may still end up writing the cache tree, even though
there is an entry with a null oid in the index.

Fix this by checking for null oids in prepare_to_write_split_index,
where we loop the entries of the shared index as well as the entries for
the split index.

This fixes t7009 with GIT_TEST_SPLIT_INDEX.  Also add a new test that's
more specifically showing the problem.

Signed-off-by: Thomas Gummerer <t.gummerer@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
cache.h
read-cache.c
split-index.c
t/t1700-split-index.sh