Commit df16fbcf by Vicent Martí

Merge pull request #572 from schu/fix-warning-uninitialized

Fix -Wuninitialized warning
parents 36d72a51 01269540
......@@ -109,7 +109,7 @@ static int tree_iterator__advance(
{
int error = GIT_SUCCESS;
tree_iterator *ti = (tree_iterator *)self;
const git_tree_entry *te;
const git_tree_entry *te = NULL;
if (entry != NULL)
*entry = NULL;
......
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