aboutsummaryrefslogtreecommitdiffstats
path: root/URPM
diff options
context:
space:
mode:
authorThierry Vignaud <tv@mageia.org>2012-12-17 16:15:03 +0000
committerThierry Vignaud <tv@mageia.org>2012-12-17 16:15:03 +0000
commit2bede327ae55e55f54089c8b86a294f166c8240c (patch)
tree7d75eac665548889611dd9ce3c8610dbb80748fb /URPM
parent04c50c20a8c2ca3374dc48cd464994982eba47ab (diff)
downloadperl-URPM-2bede327ae55e55f54089c8b86a294f166c8240c.tar
perl-URPM-2bede327ae55e55f54089c8b86a294f166c8240c.tar.gz
perl-URPM-2bede327ae55e55f54089c8b86a294f166c8240c.tar.bz2
perl-URPM-2bede327ae55e55f54089c8b86a294f166c8240c.tar.xz
perl-URPM-2bede327ae55e55f54089c8b86a294f166c8240c.zip
prevent creating empty transactions in rare cases
(that cause rpm to abort on assert while creating a new pool)
Diffstat (limited to 'URPM')
-rw-r--r--URPM/Resolve.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/URPM/Resolve.pm b/URPM/Resolve.pm
index a7496de..b0df240 100644
--- a/URPM/Resolve.pm
+++ b/URPM/Resolve.pm
@@ -2010,7 +2010,7 @@ sub build_transaction_set {
if ($state->{orphans_to_remove}) {
my @l = map { scalar $_->fullname } @{$state->{orphans_to_remove}};
- push @{$state->{transaction}}, { remove => \@l };
+ push @{$state->{transaction}}, { remove => \@l } if @l;
}
$state->{transaction};