summaryrefslogtreecommitdiff
path: root/content/hlcache.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2010-04-13 23:24:07 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2010-04-13 23:24:07 +0000
commit3840e3911b84197cef02615c8febd81abc619f8f (patch)
tree9e4d581f3bde7875d8b53828a9abbc8b9e3c1cf4 /content/hlcache.c
parentf75d630d2543d423fd428005e6ab085314a4b212 (diff)
downloadnetsurf-3840e3911b84197cef02615c8febd81abc619f8f.tar.gz
netsurf-3840e3911b84197cef02615c8febd81abc619f8f.tar.bz2
Stop leaking hlcache handles.
svn path=/trunk/netsurf/; revision=10395
Diffstat (limited to 'content/hlcache.c')
-rw-r--r--content/hlcache.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/content/hlcache.c b/content/hlcache.c
index 84f391aed..e38e74a81 100644
--- a/content/hlcache.c
+++ b/content/hlcache.c
@@ -185,7 +185,7 @@ nserror hlcache_handle_release(hlcache_handle *handle)
handle->cb = NULL;
handle->pw = NULL;
- /** \todo Provide hlcache_poll() to perform cache maintenance */
+ free(handle);
return NSERROR_OK;
}