summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--content/content.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/content/content.c b/content/content.c
index ff03e4450..1945f1dc9 100644
--- a/content/content.c
+++ b/content/content.c
@@ -744,6 +744,10 @@ void content_destroy(struct content *c)
if (c->type < HANDLER_MAP_COUNT && handler_map[c->type].destroy)
handler_map[c->type].destroy(c);
+
+ llcache_handle_release(c->llcache);
+ c->llcache = NULL;
+
talloc_free(c);
}