summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/be_package.c
diff options
context:
space:
mode:
authorAndrew Gregory <andrew.gregory.8@gmail.com>2013-02-14 00:54:28 +0100
committerAllan McRae <allan@archlinux.org>2013-02-16 02:06:43 +0100
commitd5a5a6b512f20cf0b6f72e58ca0479af69044359 (patch)
treea7d7f7bba150b8374ea54d9c45d1154c41949846 /lib/libalpm/be_package.c
parent578dfcd9779e5fdcf5b3a32b97c9b31728cc9c20 (diff)
downloadpacman-d5a5a6b512f20cf0b6f72e58ca0479af69044359.tar.gz
pacman-d5a5a6b512f20cf0b6f72e58ca0479af69044359.tar.xz
fix style violations
Signed-off-by: Andrew Gregory <andrew.gregory.8@gmail.com> Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'lib/libalpm/be_package.c')
-rw-r--r--lib/libalpm/be_package.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/libalpm/be_package.c b/lib/libalpm/be_package.c
index 53618934..3b43ed84 100644
--- a/lib/libalpm/be_package.c
+++ b/lib/libalpm/be_package.c
@@ -542,18 +542,19 @@ int SYMEXPORT alpm_pkg_load(alpm_handle_t *handle, const char *filename, int ful
alpm_siglevel_t level, alpm_pkg_t **pkg)
{
alpm_pkgvalidation_t validation = 0;
+ char *sigpath;
CHECK_HANDLE(handle, return -1);
ASSERT(pkg != NULL, RET_ERR(handle, ALPM_ERR_WRONG_ARGS, -1));
- char *sigpath = _alpm_sigpath(handle, filename);
+ sigpath = _alpm_sigpath(handle, filename);
if(sigpath && !_alpm_access(handle, NULL, sigpath, R_OK)) {
if(level & ALPM_SIG_PACKAGE) {
alpm_list_t *keys = NULL;
int fail = 0;
unsigned char *sig = NULL;
-
int len = read_sigfile(sigpath, &sig);
+
if(len == -1) {
_alpm_log(handle, ALPM_LOG_ERROR,
_("failed to read signature file: %s\n"), sigpath);