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 --- image/image.c | 48 ------------------------------------------------ 1 file changed, 48 deletions(-) (limited to 'image/image.c') diff --git a/image/image.c b/image/image.c index 099b58ac0..cf5badc4d 100644 --- a/image/image.c +++ b/image/image.c @@ -114,51 +114,3 @@ nserror image_init(void) return NSERROR_OK; } -/** - * Finalise image content handlers - */ -void image_fini(void) -{ -#ifdef WITH_BMP - nsbmp_fini(); -#endif - -#ifdef WITH_GIF - nsgif_fini(); -#endif - -#ifdef WITH_BMP - nsico_fini(); -#endif - -#ifdef WITH_JPEG - nsjpeg_fini(); -#endif - -#ifdef WITH_MNG - nsmng_fini(); - nsjpng_fini(); -#endif - -#ifdef WITH_NSSPRITE - nssprite_fini(); -#endif - -#ifdef WITH_PNG - nspng_fini(); -#endif - -#ifdef WITH_RSVG - nsrsvg_fini(); -#endif - -#ifdef WITH_NS_SVG - svg_fini(); -#endif - -#ifdef WITH_WEBP - webp_fini(); -#endif - -} - -- cgit v1.2.3