summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/libalpm/remove.c4
-rw-r--r--lib/libalpm/sync.c4
2 files changed, 7 insertions, 1 deletions
diff --git a/lib/libalpm/remove.c b/lib/libalpm/remove.c
index b53d85a6..b2137b19 100644
--- a/lib/libalpm/remove.c
+++ b/lib/libalpm/remove.c
@@ -413,6 +413,10 @@ int _alpm_remove_packages(pmtrans_t *trans, pmdb_t *db)
alpm_list_t *newfiles;
_alpm_log(PM_LOG_DEBUG, "removing %d files\n", filenum);
+ /* init progress bar */
+ PROGRESS(trans, PM_TRANS_PROGRESS_REMOVE_START, info->name, 0,
+ pkg_count, (pkg_count - targcount + 1));
+
/* iterate through the list backwards, unlinking files */
newfiles = alpm_list_reverse(files);
for(lp = newfiles; lp; lp = alpm_list_next(lp)) {
diff --git a/lib/libalpm/sync.c b/lib/libalpm/sync.c
index ab3d7871..1e73b8b0 100644
--- a/lib/libalpm/sync.c
+++ b/lib/libalpm/sync.c
@@ -332,7 +332,9 @@ int SYMEXPORT alpm_sync_dbtarget(char *dbname, char *target)
if(dbs == NULL) {
RET_ERR(PM_ERR_PKG_REPO_NOT_FOUND, -1);
}
- return(sync_target(dbs, target));
+ int ret = sync_target(dbs, target);
+ alpm_list_free(dbs);
+ return(ret);
}
/** Add a sync target to the transaction.