summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Young <chris@unsatisfactorysoftware.co.uk>2013-04-15 22:53:26 +0100
committerChris Young <chris@unsatisfactorysoftware.co.uk>2013-04-15 22:53:26 +0100
commit4b9fcb1ad0c250d4afe648ddf0219da692b013d9 (patch)
tree6813988aa7aeef1a6db8d2fa89ea3234a448ccbb
parent09af7a92aa12e3efa9646480566aac4a3aff6225 (diff)
downloadnetsurf-4b9fcb1ad0c250d4afe648ddf0219da692b013d9.tar.gz
netsurf-4b9fcb1ad0c250d4afe648ddf0219da692b013d9.tar.bz2
NetSurf appears to need to call hlcache_poll even if no fetches are active otherwise it sometimes gets stuck when fetching
-rw-r--r--desktop/netsurf.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/desktop/netsurf.c b/desktop/netsurf.c
index dd4000bc0..120bda9e3 100644
--- a/desktop/netsurf.c
+++ b/desktop/netsurf.c
@@ -254,6 +254,7 @@ int netsurf_main_loop(void)
if(fetch_active)
schedule(0, netsurf_fetch_callback, NULL);
gui_poll(fetch_active);
+ hlcache_poll();
}
return 0;