Commit c1a85ae2 by Nika Layzell

mailmap: Free the mailmap vector

parent 56303e1a
......@@ -169,6 +169,8 @@ void git_mailmap_free(git_mailmap *mm)
git_vector_foreach(&mm->entries, idx, entry)
mailmap_entry_free(entry);
git_vector_free(&mm->entries);
git__free(mm);
}
......
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