From 339bed72725fe901724440939558c5f9817107ed Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Thu, 15 Sep 2011 22:47:50 +0000 Subject: Virtualise content handler finalisation calls. Remove pointless implementations. svn path=/trunk/netsurf/; revision=12797 --- content/content_factory.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'content/content_factory.c') diff --git a/content/content_factory.c b/content/content_factory.c index 3f06dc432..8da73337c 100644 --- a/content/content_factory.c +++ b/content/content_factory.c @@ -56,6 +56,9 @@ void content_factory_fini(void) content_handlers = content_handlers->next; + if (victim->handler->fini != NULL) + victim->handler->fini(); + lwc_string_unref(victim->mime_type); free(victim); -- cgit v1.2.3