34 lines
1.3 KiB
Diff
34 lines
1.3 KiB
Diff
|
|
diff -rupN --no-dereference binutils-2.32/bfd/pei-x86_64.c binutils-2.32-new/bfd/pei-x86_64.c
|
||
|
|
--- binutils-2.32/bfd/pei-x86_64.c 2019-01-19 17:01:33.000000000 +0100
|
||
|
|
+++ binutils-2.32-new/bfd/pei-x86_64.c 2019-11-19 20:47:05.573611249 +0100
|
||
|
|
@@ -541,7 +541,7 @@ pex64_bfd_print_pdata_section (bfd *abfd
|
||
|
|
/* virt_size might be zero for objects. */
|
||
|
|
if (stop == 0 && strcmp (abfd->xvec->name, "pe-x86-64") == 0)
|
||
|
|
{
|
||
|
|
- stop = (datasize / onaline) * onaline;
|
||
|
|
+ stop = datasize;
|
||
|
|
virt_size_is_zero = TRUE;
|
||
|
|
}
|
||
|
|
else if (datasize < stop)
|
||
|
|
@@ -551,8 +551,8 @@ pex64_bfd_print_pdata_section (bfd *abfd
|
||
|
|
_("Warning: %s section size (%ld) is smaller than virtual size (%ld)\n"),
|
||
|
|
pdata_section->name, (unsigned long) datasize,
|
||
|
|
(unsigned long) stop);
|
||
|
|
- /* Be sure not to read passed datasize. */
|
||
|
|
- stop = datasize / onaline;
|
||
|
|
+ /* Be sure not to read past datasize. */
|
||
|
|
+ stop = datasize;
|
||
|
|
}
|
||
|
|
|
||
|
|
/* Display functions table. */
|
||
|
|
@@ -724,8 +724,7 @@ pex64_bfd_print_pdata_section (bfd *abfd
|
||
|
|
altent += imagebase;
|
||
|
|
|
||
|
|
if (altent >= pdata_vma
|
||
|
|
- && (altent + PDATA_ROW_SIZE <= pdata_vma
|
||
|
|
- + pei_section_data (abfd, pdata_section)->virt_size))
|
||
|
|
+ && altent - pdata_vma + PDATA_ROW_SIZE <= stop)
|
||
|
|
{
|
||
|
|
pex64_get_runtime_function
|
||
|
|
(abfd, &arf, &pdata[altent - pdata_vma]);
|