diff options
author | Stefan Beller <sbeller@google.com> | 2018-03-23 18:20:58 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-03-23 19:06:01 +0100 |
commit | 97501e933a6d4d5a8567dbbb44fa3b4bff2ea298 (patch) | |
tree | 5ecd2ebc159ab56464175283801560b3985233f5 /object.c | |
parent | object-store: move alt_odb_list and alt_odb_tail to object store (diff) | |
download | git-97501e933a6d4d5a8567dbbb44fa3b4bff2ea298.tar.xz git-97501e933a6d4d5a8567dbbb44fa3b4bff2ea298.zip |
object-store: free alt_odb_list
Free the memory and reset alt_odb_{list, tail} to NULL.
Signed-off-by: Stefan Beller <sbeller@google.com>
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to '')
-rw-r--r-- | object.c | 22 |
1 files changed, 22 insertions, 0 deletions
@@ -454,8 +454,30 @@ struct raw_object_store *raw_object_store_new(void) memset(o, 0, sizeof(*o)); return o; } + +static void free_alt_odb(struct alternate_object_database *alt) +{ + strbuf_release(&alt->scratch); + oid_array_clear(&alt->loose_objects_cache); + free(alt); +} + +static void free_alt_odbs(struct raw_object_store *o) +{ + while (o->alt_odb_list) { + struct alternate_object_database *next; + + next = o->alt_odb_list->next; + free_alt_odb(o->alt_odb_list); + o->alt_odb_list = next; + } +} + void raw_object_store_clear(struct raw_object_store *o) { FREE_AND_NULL(o->objectdir); FREE_AND_NULL(o->alternate_db); + + free_alt_odbs(o); + o->alt_odb_tail = NULL; } |