summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/url.c13
1 files changed, 10 insertions, 3 deletions
diff --git a/src/url.c b/src/url.c
index 18a7b9d..414a109 100644
--- a/src/url.c
+++ b/src/url.c
@@ -110,14 +110,21 @@ static const struct apk_istream_ops fetch_istream_ops = {
static struct apk_istream *apk_istream_fetch(const char *url, time_t since)
{
- struct apk_fetch_istream *fis;
+ struct apk_fetch_istream *fis = NULL;
struct url *u;
fetchIO *io = NULL;
- int rc = -ENOMEM;
+ int rc = -EIO;
u = fetchParseURL(url);
+ if (!u) {
+ rc = -EAPKBADURL;
+ goto err;
+ }
fis = malloc(sizeof(*fis));
- if (!fis || !u) goto err;
+ if (!fis) {
+ rc = -ENOMEM;
+ goto err;
+ }
u->last_modified = since;
io = fetchXGet(u, &fis->urlstat, (apk_force & APK_FORCE_REFRESH) ? "Ci" : "i");