]> granicus.if.org Git - git/commitdiff
release_delta_base_cache: reuse existing detach function
authorJeff King <peff@peff.net>
Mon, 22 Aug 2016 21:57:58 +0000 (17:57 -0400)
committerJunio C Hamano <gitster@pobox.com>
Tue, 23 Aug 2016 21:47:33 +0000 (14:47 -0700)
This function drops an entry entirely from the cache,
meaning that aside from the freeing of the buffer, it is
exactly equivalent to detach_delta_base_cache_entry(). Let's
build on top of the detach function, which shortens the code
and will make it simpler when we change out the underlying
storage in future patches.

Signed-off-by: Jeff King <peff@peff.net>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sha1_file.c

index 1d0810c30857b257fbdc2724b679ac0d636528be..8264b391f030401eab83dbc69628be9a60c199b4 100644 (file)
@@ -2152,10 +2152,7 @@ static inline void release_delta_base_cache(struct delta_base_cache_entry *ent)
 {
        if (ent->data) {
                free(ent->data);
-               ent->data = NULL;
-               ent->lru.next->prev = ent->lru.prev;
-               ent->lru.prev->next = ent->lru.next;
-               delta_base_cached -= ent->size;
+               detach_delta_base_cache_entry(ent);
        }
 }