Commit 6b51f380 by Patrick Steinhardt

indexer: correctly initialize struct with {0}

parent 65a4b06e
......@@ -1000,7 +1000,7 @@ static int resolve_deltas(git_indexer *idx, git_transfer_progress *stats)
progressed = 0;
non_null = 0;
git_vector_foreach(&idx->deltas, i, delta) {
git_rawobj obj = {NULL};
git_rawobj obj = {0};
if (!delta)
continue;
......
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