summaryrefslogtreecommitdiff
path: root/render/html.c
diff options
context:
space:
mode:
Diffstat (limited to 'render/html.c')
-rw-r--r--render/html.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/render/html.c b/render/html.c
index 5378480c5..286fc9644 100644
--- a/render/html.c
+++ b/render/html.c
@@ -59,6 +59,7 @@
#define ALWAYS_DUMP_FRAMESET 0
#define ALWAYS_DUMP_BOX 0
+static void html_fini(void);
static nserror html_create(const content_handler *handler,
lwc_string *imime_type, const http_parameter *params,
llcache_handle *llcache, const char *fallback_charset,
@@ -109,6 +110,7 @@ static void html_dump_frameset(struct content_html_frames *frame,
#endif
static const content_handler html_content_handler = {
+ .fini = html_fini,
.create = html_create,
.process_data = html_process_data,
.data_complete = html_convert,