object.c: clear replace map before freeing it
Signed-off-by: Stefan Beller <sbeller@google.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>maint
parent
74fd0705bb
commit
7a1dc605af
2
object.c
2
object.c
|
@ -480,6 +480,8 @@ void raw_object_store_clear(struct raw_object_store *o)
|
||||||
{
|
{
|
||||||
FREE_AND_NULL(o->objectdir);
|
FREE_AND_NULL(o->objectdir);
|
||||||
FREE_AND_NULL(o->alternate_db);
|
FREE_AND_NULL(o->alternate_db);
|
||||||
|
|
||||||
|
oidmap_free(o->replace_map, 1);
|
||||||
FREE_AND_NULL(o->replace_map);
|
FREE_AND_NULL(o->replace_map);
|
||||||
|
|
||||||
free_alt_odbs(o);
|
free_alt_odbs(o);
|
||||||
|
|
Loading…
Reference in New Issue