summaryrefslogtreecommitdiff
path: root/desktop/netsurf.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2010-04-27 06:48:09 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2010-04-27 06:48:09 +0000
commit0de2013f253923a413ed80e1935a149eeea1a8c1 (patch)
tree6fc4daa177de805cca76f8b1c4ed8a94a0c6b059 /desktop/netsurf.c
parent9c488e3d956e9cb2cb8106bf4c416511c044169f (diff)
downloadnetsurf-0de2013f253923a413ed80e1935a149eeea1a8c1.tar.gz
netsurf-0de2013f253923a413ed80e1935a149eeea1a8c1.tar.bz2
Clean up caches on exit
svn path=/trunk/netsurf/; revision=10494
Diffstat (limited to 'desktop/netsurf.c')
-rw-r--r--desktop/netsurf.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/desktop/netsurf.c b/desktop/netsurf.c
index 2ce1012c2..b25209c4f 100644
--- a/desktop/netsurf.c
+++ b/desktop/netsurf.c
@@ -187,6 +187,10 @@ void netsurf_exit(void)
utf8_finalise();
LOG(("Destroying URLdb"));
urldb_destroy();
+ LOG(("Finalising high-level cache"));
+ hlcache_finalise();
+ LOG(("Finalising low-level cache"));
+ llcache_finalise();
LOG(("Exited successfully"));
}