summaryrefslogtreecommitdiff
path: root/image/image.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2011-09-15 22:47:50 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2011-09-15 22:47:50 +0000
commit339bed72725fe901724440939558c5f9817107ed (patch)
treed2c3fda42a53d4d763f5901fd16e597ce065dd2e /image/image.c
parent3d71da088b83c2cc5741dfdc8f619fbf2bba55a2 (diff)
downloadnetsurf-339bed72725fe901724440939558c5f9817107ed.tar.gz
netsurf-339bed72725fe901724440939558c5f9817107ed.tar.bz2
Virtualise content handler finalisation calls. Remove pointless implementations.
svn path=/trunk/netsurf/; revision=12797
Diffstat (limited to 'image/image.c')
-rw-r--r--image/image.c48
1 files changed, 0 insertions, 48 deletions
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
-
-}
-