The following commit has been merged in the master branch:
commit c3a114dec1dfdec52576eba5f9855b32dee7e62d
Author: Niels Thykier <[email protected]>
Date:   Fri Jul 5 23:33:09 2013 +0200

    objdump-info-helper: Remove redundant member from list
    
    Signed-off-by: Niels Thykier <[email protected]>

diff --git a/helpers/coll/objdump-info-helper b/helpers/coll/objdump-info-helper
index 43f8eb1..a808447 100755
--- a/helpers/coll/objdump-info-helper
+++ b/helpers/coll/objdump-info-helper
@@ -164,7 +164,7 @@ while ( my $line = <$readelf> ) {
         # We (somtimes) need to read the "Version symbols section" first to
         # use this data and readelf tends to print after this section, so
         # save for later.
-        push @dyn_symbols, [$1, $2, $3, ''];
+        push(@dyn_symbols, [$1, $2, $3]);
 
     } elsif ($line =~ m/^There is no dynamic section in this file/
                  and exists $program_headers{DYNAMIC}) {
@@ -186,7 +186,8 @@ sub finish_file {
     if (@dyn_symbols) {
         print "Dynamic-Symbols:\n";
         foreach my $dynsym (@dyn_symbols) {
-            my ($symnum, $seg, $sym, $ver) = @$dynsym;
+            my ($symnum, $seg, $sym) = @{$dynsym};
+            my $ver;
 
             if ($sym =~ m/^(.*)@(.*) \(.*\)$/) {
                 $sym = $1;

-- 
Debian package checker


-- 
To UNSUBSCRIBE, email to [email protected]
with a subject of "unsubscribe". Trouble? Contact [email protected]
Archive: http://lists.debian.org/[email protected]

Reply via email to