summaryrefslogtreecommitdiff
path: root/desktop
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2006-12-08 22:38:46 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2006-12-08 22:38:46 +0000
commit5b3f0755f6ef17c666b91c27c42e732fe294cee7 (patch)
tree983d27a6cf4cd4409af41f6878bbe7d4c68b2d21 /desktop
parente2d7630ae83ae795775487b098a3cb2fe119a368 (diff)
downloadnetsurf-5b3f0755f6ef17c666b91c27c42e732fe294cee7.tar.gz
netsurf-5b3f0755f6ef17c666b91c27c42e732fe294cee7.tar.bz2
Add URLdb destruction functionality
svn path=/trunk/netsurf/; revision=3115
Diffstat (limited to 'desktop')
-rw-r--r--desktop/netsurf.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/desktop/netsurf.c b/desktop/netsurf.c
index 8f3a31845..0e93e036a 100644
--- a/desktop/netsurf.c
+++ b/desktop/netsurf.c
@@ -15,6 +15,7 @@
#include "netsurf/utils/config.h"
#include "netsurf/content/fetch.h"
#include "netsurf/content/fetchcache.h"
+#include "netsurf/content/urldb.h"
#include "netsurf/desktop/netsurf.h"
#include "netsurf/desktop/browser.h"
#include "netsurf/desktop/gui.h"
@@ -110,6 +111,8 @@ void netsurf_exit(void)
fetch_quit();
LOG(("Closing utf8"));
utf8_finalise();
+ LOG(("Destroying URLdb"));
+ urldb_destroy();
LOG(("Exited successfully"));
}