summaryrefslogtreecommitdiff
path: root/lib/psm.c
diff options
context:
space:
mode:
authorPanu Matilainen <pmatilai@redhat.com>2011-03-04 15:51:16 +0200
committerPanu Matilainen <pmatilai@redhat.com>2011-03-04 15:52:21 +0200
commit695342bb19fc805803cf6f4bffdd56c43c299e7e (patch)
tree12b828bfa21e4f3dcd99427e92adb8efbce4d0bd /lib/psm.c
parent10ed98db01bcf37bfeb2192f64dd0ae0ff4a9218 (diff)
downloadrpm-695342bb19fc805803cf6f4bffdd56c43c299e7e.tar.gz
rpm-695342bb19fc805803cf6f4bffdd56c43c299e7e.tar.bz2
rpm-695342bb19fc805803cf6f4bffdd56c43c299e7e.zip
Don't bother storing irrelevant return codes
- PSM_NOTIFY doesn't return anything of interest, rpmdbSetIteratorRE() doesn't return errors for RPMMIRE_STRCMP and Fclose() errors we just can't do anything about (and we were throwing all these away anyhow)
Diffstat (limited to 'lib/psm.c')
-rw-r--r--lib/psm.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/lib/psm.c b/lib/psm.c
index f4f80bdf7..dabb5bd38 100644
--- a/lib/psm.c
+++ b/lib/psm.c
@@ -724,16 +724,16 @@ static rpmRC rpmpsmStage(rpmpsm psm, pkgStage stage)
psm->scriptArg = psm->npkgs_installed + 1;
mi = rpmtsInitIterator(ts, RPMDBI_NAME, rpmteN(psm->te), 0);
- xx = rpmdbSetIteratorRE(mi, RPMTAG_EPOCH, RPMMIRE_STRCMP,
+ rpmdbSetIteratorRE(mi, RPMTAG_EPOCH, RPMMIRE_STRCMP,
rpmteE(psm->te));
- xx = rpmdbSetIteratorRE(mi, RPMTAG_VERSION, RPMMIRE_STRCMP,
+ rpmdbSetIteratorRE(mi, RPMTAG_VERSION, RPMMIRE_STRCMP,
rpmteV(psm->te));
- xx = rpmdbSetIteratorRE(mi, RPMTAG_RELEASE, RPMMIRE_STRCMP,
+ rpmdbSetIteratorRE(mi, RPMTAG_RELEASE, RPMMIRE_STRCMP,
rpmteR(psm->te));
if (tscolor) {
- xx = rpmdbSetIteratorRE(mi, RPMTAG_ARCH, RPMMIRE_STRCMP,
+ rpmdbSetIteratorRE(mi, RPMTAG_ARCH, RPMMIRE_STRCMP,
rpmteA(psm->te));
- xx = rpmdbSetIteratorRE(mi, RPMTAG_OS, RPMMIRE_STRCMP,
+ rpmdbSetIteratorRE(mi, RPMTAG_OS, RPMMIRE_STRCMP,
rpmteO(psm->te));
}
@@ -833,14 +833,14 @@ static rpmRC rpmpsmStage(rpmpsm psm, pkgStage stage)
xx = fsmTeardown(rpmfiFSM(fi));
saveerrno = errno; /* XXX FIXME: Fclose with libio destroys errno */
- xx = Fclose(payload);
+ Fclose(payload);
errno = saveerrno; /* XXX FIXME: Fclose with libio destroys errno */
/* XXX make sure progress is closed out */
psm->what = RPMCALLBACK_INST_PROGRESS;
psm->amount = (fi->archiveSize ? fi->archiveSize : 100);
psm->total = psm->amount;
- xx = rpmpsmNext(psm, PSM_NOTIFY);
+ rpmpsmNext(psm, PSM_NOTIFY);
if (rc) {
rpmlog(RPMLOG_ERR,
@@ -854,7 +854,7 @@ static rpmRC rpmpsmStage(rpmpsm psm, pkgStage stage)
psm->what = RPMCALLBACK_UNPACK_ERROR;
psm->amount = 0;
psm->total = 0;
- xx = rpmpsmNext(psm, PSM_NOTIFY);
+ rpmpsmNext(psm, PSM_NOTIFY);
break;
}
@@ -874,7 +874,7 @@ static rpmRC rpmpsmStage(rpmpsm psm, pkgStage stage)
psm->what = RPMCALLBACK_UNINST_START;
psm->amount = fc; /* XXX W2DO? looks wrong. */
psm->total = fc;
- xx = rpmpsmNext(psm, PSM_NOTIFY);
+ rpmpsmNext(psm, PSM_NOTIFY);
rc = fsmSetup(rpmfiFSM(fi), FSM_PKGERASE, ts, psm->te, fi,
NULL, NULL, &psm->failedFile);
@@ -883,7 +883,7 @@ static rpmRC rpmpsmStage(rpmpsm psm, pkgStage stage)
psm->what = RPMCALLBACK_UNINST_STOP;
psm->amount = 0; /* XXX W2DO? looks wrong. */
psm->total = fc;
- xx = rpmpsmNext(psm, PSM_NOTIFY);
+ rpmpsmNext(psm, PSM_NOTIFY);
}
break;
@@ -972,7 +972,7 @@ static rpmRC rpmpsmStage(rpmpsm psm, pkgStage stage)
psm->what = RPMCALLBACK_CPIO_ERROR;
psm->amount = 0;
psm->total = 0;
- xx = rpmpsmNext(psm, PSM_NOTIFY);
+ rpmpsmNext(psm, PSM_NOTIFY);
}
psm->failedFile = _free(psm->failedFile);