summaryrefslogtreecommitdiff
path: root/content/fetch.c
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2004-08-09 16:11:58 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2004-08-09 16:11:58 +0000
commitc9bd6fa9fce386526ea1327adea56128648f3355 (patch)
tree419a7d4fcfd1a7ae7229763f0b9ed2125be0a02c /content/fetch.c
parent91e6c7c65bb496f88f6af622f558b35c436f9cd2 (diff)
downloadnetsurf-c9bd6fa9fce386526ea1327adea56128648f3355.tar.gz
netsurf-c9bd6fa9fce386526ea1327adea56128648f3355.tar.bz2
[project @ 2004-08-09 16:11:58 by jmb]
Rework the interface of the URL handing module to allow for multiple error types. Modify save_complete URL rewriting appropriately. svn path=/import/netsurf/; revision=1206
Diffstat (limited to 'content/fetch.c')
-rw-r--r--content/fetch.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/content/fetch.c b/content/fetch.c
index 81f5e3a26..cb1353f98 100644
--- a/content/fetch.c
+++ b/content/fetch.c
@@ -227,12 +227,16 @@ struct fetch * fetch_start(char *url, char *referer,
CURLcode code;
CURLMcode codem;
struct curl_slist *slist;
+ url_func_result res;
fetch = malloc(sizeof (*fetch));
if (!fetch)
return 0;
- host = url_host(url);
+ res = url_host(url, &host);
+ /* we only fail memory exhaustion */
+ if (res == URL_FUNC_NOMEM)
+ goto failed;
LOG(("fetch %p, url '%s'", fetch, url));