Fix a mutex leak in pack.c

This commit is contained in:
Philip Kelley 2013-01-26 15:12:53 -05:00
parent f42beff7e2
commit aa3bf89df2

View File

@ -83,6 +83,7 @@ static void cache_free(git_pack_cache *cache)
}
git_offmap_free(cache->entries);
git_mutex_free(&cache->lock);
}
}