From c7520629b0d655bde1db9cbe0012f91502265b5d Mon Sep 17 00:00:00 2001 From: James Bursa Date: Wed, 16 Jul 2003 17:38:46 +0000 Subject: [project @ 2003-07-16 17:38:46 by bursa] Make fetchcache return 0 on failure to parse URL. svn path=/import/netsurf/; revision=225 --- content/fetch.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'content/fetch.c') diff --git a/content/fetch.c b/content/fetch.c index 3b057c266..330f68d3b 100644 --- a/content/fetch.c +++ b/content/fetch.c @@ -119,7 +119,10 @@ struct fetch * fetch_start(char *url, char *referer, LOG(("fetch %p, url '%s'", fetch, url)); uri = xmlParseURI(url); - assert(uri != 0); + if (uri == 0) { + LOG(("warning: failed to parse url")); + return 0; + } /* construct a new fetch structure */ fetch->start_time = time(0); -- cgit v1.2.3