diff options
author | Aaron Griffin <aaron@archlinux.org> | 2006-11-22 04:25:31 +0000 |
---|---|---|
committer | Aaron Griffin <aaron@archlinux.org> | 2006-11-22 04:25:31 +0000 |
commit | 3c7f616805b4e7b29a1b5ef8cf218627c9da34bd (patch) | |
tree | 1c33ad8413d8ddb09841d629b7f60961d9c79707 | |
parent | 99d0c0024624c7241a7f5e0d1d3f8b1c6f96a19e (diff) | |
download | pacman-3c7f616805b4e7b29a1b5ef8cf218627c9da34bd.tar.xz |
* Fixed an error when trying to download to an unwritable location
-rw-r--r-- | lib/libalpm/server.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/libalpm/server.c b/lib/libalpm/server.c index 90466e32..f2e4afdf 100644 --- a/lib/libalpm/server.c +++ b/lib/libalpm/server.c @@ -224,6 +224,10 @@ int _alpm_downloadfiles_forreal(pmlist_t *servers, const char *localpath, server->s_url->offset = (off_t)0; dltotal_bytes = 0; localf = fopen(output, "w"); + if(localf == NULL) { /* still null? */ + _alpm_log(PM_LOG_ERROR, _("cannot write to file '%s'"), output); + return -1; + } } /* Progress 0 - initialize */ |