Commit e23ede0d by Carlos Martín Nieto Committed by Vicent Marti

index: invalidate added paths

When a file is updated in the index, it's path needs to be invalidated
in the tree cache as the hash is no longer correct.

Signed-off-by: Carlos Martín Nieto <cmn@elego.de>
parent 69bffab9
......@@ -436,6 +436,8 @@ static int index_add(git_index *index, const char *path, int stage, int replace)
if (ret)
goto err;
git_tree_cache_invalidate_path(index->tree, entry->path);
return ret;
err:
index_entry_free(entry);
......@@ -468,6 +470,8 @@ static int index_add2(git_index *index, const git_index_entry *source_entry,
if (ret)
goto err;
git_tree_cache_invalidate_path(index->tree, entry->path);
return ret;
err:
index_entry_free(entry);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment