summaryrefslogtreecommitdiff
path: root/content/hlcache.c
diff options
context:
space:
mode:
authorVincent Sanders <vince@kyllikki.org>2014-05-29 14:00:13 +0100
committerVincent Sanders <vince@kyllikki.org>2014-05-29 14:00:13 +0100
commit644fc616b3b79d7301aeabb3a86910e10a5606d5 (patch)
treedd6bc438f30745e829e67a608524738ec0966149 /content/hlcache.c
parent4acfda898b3ddda29e15318b604d3acf32a93b01 (diff)
downloadnetsurf-644fc616b3b79d7301aeabb3a86910e10a5606d5.tar.gz
netsurf-644fc616b3b79d7301aeabb3a86910e10a5606d5.tar.bz2
attempt to purge low level cache on out of memory during fetch
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 23fb79562..e7c4cd84d 100644
--- a/content/hlcache.c
+++ b/content/hlcache.c
@@ -143,7 +143,7 @@ static void hlcache_clean(void *ignored)
}
/* Attempt to clean the llcache */
- llcache_clean();
+ llcache_clean(false);
/* Re-schedule ourselves */
guit->browser->schedule(hlcache->params.bg_clean_time, hlcache_clean, NULL);