From 3c7f616805b4e7b29a1b5ef8cf218627c9da34bd Mon Sep 17 00:00:00 2001 From: Aaron Griffin Date: Wed, 22 Nov 2006 04:25:31 +0000 Subject: * Fixed an error when trying to download to an unwritable location --- lib/libalpm/server.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'lib') 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 */ -- cgit v1.2.3-24-g4f1b