summaryrefslogtreecommitdiff
path: root/content
diff options
context:
space:
mode:
Diffstat (limited to 'content')
-rw-r--r--content/content.c7
1 files changed, 7 insertions, 0 deletions
diff --git a/content/content.c b/content/content.c
index 9310eb180..19bb45b0a 100644
--- a/content/content.c
+++ b/content/content.c
@@ -931,6 +931,13 @@ void content_reset(struct content *c)
c->size = 0;
talloc_free(c->mime_type);
c->mime_type = 0;
+ talloc_free(c->refresh);
+ c->refresh = 0;
+ talloc_free(c->title);
+ c->title = 0;
+ talloc_free(c->source_data);
+ c->source_data = 0;
+ c->source_size = c->source_allocated = 0;
}