summaryrefslogtreecommitdiff
path: root/content/hlcache.c
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2010-04-12 09:31:34 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2010-04-12 09:31:34 +0000
commitf58fa3b2ac2c7c0241821cc098cd59772ffb6ce4 (patch)
tree2a712149a5ac0236cf46fe34a4acf64455b93626 /content/hlcache.c
parentde6f1a2b2ed22d706d5b55de8b2f95601b5e7ba0 (diff)
downloadnetsurf-f58fa3b2ac2c7c0241821cc098cd59772ffb6ce4.tar.gz
netsurf-f58fa3b2ac2c7c0241821cc098cd59772ffb6ce4.tar.bz2
Revert last change.
svn path=/trunk/netsurf/; revision=10382
Diffstat (limited to 'content/hlcache.c')
-rw-r--r--content/hlcache.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/content/hlcache.c b/content/hlcache.c
index d839b500c..84f391aed 100644
--- a/content/hlcache.c
+++ b/content/hlcache.c
@@ -107,7 +107,6 @@ nserror hlcache_handle_retrieve(const char *url, uint32_t flags,
{
hlcache_retrieval_ctx *ctx;
nserror error;
- char *hash;
assert(cb != NULL);
@@ -139,10 +138,6 @@ nserror hlcache_handle_retrieve(const char *url, uint32_t flags,
ctx->handle->cb = cb;
ctx->handle->pw = pw;
- /* strip fragment identifier */
- if ((hash = strchr(url, '#')) != NULL)
- *hash = 0;
-
error = llcache_handle_retrieve(url, flags, referer, post,
hlcache_llcache_callback, ctx,
&ctx->llcache);