[project @ 2003-06-30 22:21:33 by bursa]

Strip fragment identifiers from URLs

svn path=/import/netsurf/; revision=194
This commit is contained in:
James Bursa 2003-06-30 22:21:33 +00:00
parent b2c3e89310
commit f13643d704
1 changed files with 7 additions and 1 deletions

View File

@ -18,12 +18,18 @@
static void fetchcache_callback(fetch_msg msg, void *p, char *data, unsigned long size);
struct content * fetchcache(const char *url, char *referer,
struct content * fetchcache(const char *url0, char *referer,
void (*callback)(content_msg msg, struct content *c, void *p1,
void *p2, const char *error),
void *p1, void *p2, unsigned long width, unsigned long height)
{
struct content *c;
char *url = xstrdup(url0);
char *hash = strchr(url, '#');
/* strip fragment identifier */
if (hash != 0)
*hash = 0;
LOG(("url %s", url));