tree-cache: Zero out the allocated tree children array

This commit is contained in:
nulltoken 2013-11-19 13:13:51 +01:00
parent 7b69289f4e
commit 82e6a42c6c

View File

@ -138,6 +138,8 @@ static int read_tree_internal(git_tree_cache **out,
tree->children = git__malloc(tree->children_count * sizeof(git_tree_cache *)); tree->children = git__malloc(tree->children_count * sizeof(git_tree_cache *));
GITERR_CHECK_ALLOC(tree->children); GITERR_CHECK_ALLOC(tree->children);
memset(tree->children, 0x0, tree->children_count * sizeof(git_tree_cache *));
for (i = 0; i < tree->children_count; ++i) { for (i = 0; i < tree->children_count; ++i) {
if (read_tree_internal(&tree->children[i], &buffer, buffer_end, tree) < 0) if (read_tree_internal(&tree->children[i], &buffer, buffer_end, tree) < 0)
goto corrupted; goto corrupted;