summaryrefslogtreecommitdiff
path: root/ldso
diff options
context:
space:
mode:
authorJoakim Tjernlund <joakim.tjernlund@transmode.se>2005-11-02 23:52:45 +0000
committerJoakim Tjernlund <joakim.tjernlund@transmode.se>2005-11-02 23:52:45 +0000
commitf5876d1dfb3130473a8307c17847e4bcc697a7e2 (patch)
treec73493f759d7914cd160021e562f1ed712eae97a /ldso
parent8143dcecfced1b07f986196964cd813cc15bbddc (diff)
Don't need this debug check anymore.
Diffstat (limited to 'ldso')
-rw-r--r--ldso/ldso/i386/elfinterp.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/ldso/ldso/i386/elfinterp.c b/ldso/ldso/i386/elfinterp.c
index 92e415664..62e854d87 100644
--- a/ldso/ldso/i386/elfinterp.c
+++ b/ldso/ldso/i386/elfinterp.c
@@ -67,12 +67,6 @@ _dl_linux_resolver(struct elf_resolve *tpnt, int reloc_entry)
strtab = (char *)tpnt->dynamic_info[DT_STRTAB];
symname = strtab + symtab[symtab_index].st_name;
- if (unlikely(reloc_type != R_386_JMP_SLOT)) {
- _dl_dprintf(2, "%s: Incorrect relocation type in jump relocations\n",
- _dl_progname);
- _dl_exit(1);
- }
-
/* Address of the jump instruction to fix up. */
instr_addr = ((unsigned long)this_reloc->r_offset +
(unsigned long)tpnt->loadaddr);