Bug 4665 - file-3.27 introduces bug
Summary: file-3.27 introduces bug
Keywords:
Status: CLOSED NEXTRELEASE
Alias: None
Product: Red Hat Raw Hide
Classification: Retired
Component: file
Version: 1.0
Hardware: i386
OS: Linux
medium
high
Target Milestone: ---
Assignee: Crutcher Dunnavant
QA Contact:
URL:
Whiteboard:
Depends On:
Blocks:
TreeView+ depends on / blocked
 
Reported: 1999-08-23 09:10 UTC by barsnick
Modified: 2008-05-01 15:37 UTC (History)
1 user (show)

Fixed In Version:
Doc Type: Bug Fix
Doc Text:
Clone Of:
Environment:
Last Closed: 1999-08-23 22:08:28 UTC
Embargoed:


Attachments (Terms of Use)

Description barsnick 1999-08-23 09:10:12 UTC
file-3.27 introduces a bug in the recognition of stripped
ELF files (not only on Linux, BTW). They are reported as
"not stripped", which causes heavy activism trying to debug
SPEC files e.g.  ;-) This bug has been reported to the
authors of the program. No new version has been made
available yet, though.

Fix:
--- file-3.27/readelf.c.strip   Sun Feb 14 18:16:10 1999
+++ file-3.27/readelf.c Sat May 29 09:46:26 1999
@@ -147,7 +147,7 @@
        for ( ; num; num--) {
                if (read(fd, sh_addr, size) == -1)
                        error("read failed (%s).\n",
strerror(errno));
-               if (shs_type == SHT_SYMTAB || shs_type ==
SHT_DYNSYM) {
+               if (shs_type == SHT_SYMTAB) {
                        (void) printf (", not stripped");
                        return;
                }

Further patches (for magic) are available from me.

Comment 1 Jeff Johnson 1999-08-23 14:06:59 UTC
THanks for the patch. Please send the magic patches too ...

Comment 2 Jeff Johnson 1999-08-23 22:08:59 UTC
Fixed in file-3.37-3. Thanks for the patch. I added the magic changes
too.


Note You need to log in before you can comment on or make changes to this bug.