Ensure git_index_entry is not NULL before trying to free it

This commit is contained in:
Jacques Germishuys 2015-01-25 14:08:05 +02:00
parent 73c5db7663
commit b63b3b0e4d

View File

@ -292,6 +292,9 @@ static void index_entry_reuc_free(git_index_reuc_entry *reuc)
static void index_entry_free(git_index_entry *entry)
{
if (!entry)
return;
memset(&entry->id, 0, sizeof(entry->id));
git__free(entry);
}