diff options
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | Rpmdrake/pkg.pm | 1 |
2 files changed, 3 insertions, 0 deletions
@@ -1,3 +1,5 @@ +- rpmdrake: + o fix crash in URPM with non standard package names (#41002) - MandrivaUpdate (#40235): o laptop mode (height not bigger than 480): fix test diff --git a/Rpmdrake/pkg.pm b/Rpmdrake/pkg.pm index 89f1d827..bd25caf9 100644 --- a/Rpmdrake/pkg.pm +++ b/Rpmdrake/pkg.pm @@ -327,6 +327,7 @@ sub get_installed_packages { my ($pkg) = @_; update_pbar($gurpm); my $fullname = urpm_name($pkg); + return if $fullname =~ /@/; #- Extract summary and description since they'll be lost when the header is packed $all_pkgs->{$fullname} = { selected => 0, pkg => $pkg, urpm_name => urpm_name($pkg), |