summaryrefslogtreecommitdiffstats
path: root/lib/libalpm/sync.c
diff options
context:
space:
mode:
authorDan McGee <dan@archlinux.org>2011-09-20 06:28:05 +0200
committerDan McGee <dan@archlinux.org>2011-09-20 17:23:11 +0200
commitb7ebacc576ea63fd35861f374dd345f6aa8feb8c (patch)
tree5ef1ec8fc43372844216bd298697adb8924e97f1 /lib/libalpm/sync.c
parentec790ced7cee00269234cb1ed476e29256433923 (diff)
downloadpacman-b7ebacc576ea63fd35861f374dd345f6aa8feb8c.tar.gz
pacman-b7ebacc576ea63fd35861f374dd345f6aa8feb8c.tar.xz
Pass package signature data up one more level
Signed-off-by: Dan McGee <dan@archlinux.org>
Diffstat (limited to 'lib/libalpm/sync.c')
-rw-r--r--lib/libalpm/sync.c13
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/libalpm/sync.c b/lib/libalpm/sync.c
index e1eff032..04662aad 100644
--- a/lib/libalpm/sync.c
+++ b/lib/libalpm/sync.c
@@ -953,6 +953,7 @@ int _alpm_sync_commit(alpm_handle_t *handle, alpm_list_t **data)
alpm_pkg_t *spkg = i->data;
char *filepath;
alpm_siglevel_t level;
+ alpm_siglist_t *siglist = NULL;
int percent = (int)(((double)current_bytes / total_bytes) * 100);
PROGRESS(handle, ALPM_PROGRESS_INTEGRITY_START, "", percent,
@@ -966,14 +967,14 @@ int _alpm_sync_commit(alpm_handle_t *handle, alpm_list_t **data)
alpm_db_t *sdb = alpm_pkg_get_db(spkg);
level = alpm_db_get_siglevel(sdb);
- if(_alpm_pkg_validate_internal(handle, filepath, spkg, level) == -1) {
+ if(_alpm_pkg_validate_internal(handle, filepath, spkg, level, &siglist) == -1) {
prompt_to_delete(handle, filepath, handle->pm_errno);
errors++;
*data = alpm_list_add(*data, strdup(spkg->filename));
- FREE(filepath);
- continue;
}
- FREE(filepath);
+ alpm_siglist_cleanup(siglist);
+ free(siglist);
+ free(filepath);
}
PROGRESS(handle, ALPM_PROGRESS_INTEGRITY_START, "", 100,
@@ -1021,10 +1022,10 @@ int _alpm_sync_commit(alpm_handle_t *handle, alpm_list_t **data)
if(!pkgfile) {
errors++;
*data = alpm_list_add(*data, strdup(spkg->filename));
- FREE(filepath);
+ free(filepath);
continue;
}
- FREE(filepath);
+ free(filepath);
pkgfile->reason = spkg->reason; /* copy over install reason */
i->data = pkgfile;
_alpm_pkg_free_trans(spkg); /* spkg has been removed from the target list */