* object.cc (make_elf_object): Correct test for 64-bit ELF file
header size.
This commit is contained in:
parent
7ef7376804
commit
c165fb930a
@ -1,5 +1,8 @@
|
||||
2008-04-23 Ian Lance Taylor <iant@google.com>
|
||||
|
||||
* object.cc (make_elf_object): Correct test for 64-bit ELF file
|
||||
header size.
|
||||
|
||||
* readsyms.cc (Read_symbols::do_read_symbols): Use get_view rather
|
||||
than read for file header.
|
||||
* archive.cc (Archive::include_member): Likewise.
|
||||
|
@ -1678,7 +1678,7 @@ make_elf_object(const std::string& name, Input_file* input_file, off_t offset,
|
||||
}
|
||||
else
|
||||
{
|
||||
if (bytes < elfcpp::Elf_sizes<32>::ehdr_size)
|
||||
if (bytes < elfcpp::Elf_sizes<64>::ehdr_size)
|
||||
{
|
||||
gold_error(_("%s: ELF file too short"), name.c_str());
|
||||
return NULL;
|
||||
|
Loading…
Reference in New Issue
Block a user