Merge pull request #4095 from mplough/master

Fix uninitialized variable warning
This commit is contained in:
Edward Thomson 2017-01-27 17:56:52 +00:00 committed by GitHub
commit dad3c319d7

View File

@ -401,7 +401,7 @@ done:
static int submodules_from_head(git_strmap *map, git_tree *head, git_config *cfg) static int submodules_from_head(git_strmap *map, git_tree *head, git_config *cfg)
{ {
int error; int error;
git_iterator *i; git_iterator *i = NULL;
const git_index_entry *entry; const git_index_entry *entry;
git_strmap *names = 0; git_strmap *names = 0;
git_strmap_alloc(&names); git_strmap_alloc(&names);