Unverified Commit b3c3415d by Edward Thomson Committed by GitHub

Merge pull request #4602 from pks-t/pks/mempack-memleak

odb: mempack: fix leaking objects when freeing mempacks
parents 9e8bc726 b6276ae0
......@@ -157,6 +157,7 @@ static void impl__free(git_odb_backend *_backend)
{
struct memory_packer_db *db = (struct memory_packer_db *)_backend;
git_mempack_reset(_backend);
git_oidmap_free(db->objects);
git__free(db);
}
......
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