mirror of
https://github.com/moparisthebest/pacman
synced 2025-02-28 17:31:52 -05:00
* Fixed an error when trying to download to an unwritable location
This commit is contained in:
parent
99d0c00246
commit
3c7f616805
@ -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 */
|
||||
|
Loading…
x
Reference in New Issue
Block a user