Commit dd6b24b1 by Edward Thomson

iterator_walk: cast away constness for free

parent eb94199f
......@@ -1921,8 +1921,8 @@ int git_iterator_walk(
}
done:
git__free(iterator_item);
git__free(cur_items);
git__free((git_index_entry **)iterator_item);
git__free((git_index_entry **)cur_items);
if (error == GIT_ITEROVER)
error = 0;
......
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