* objcopy.c (mark_symbols_used_in_relocations): Handle sections
with no relocations. * coffgrok.c (do_sections_p1): Likewise. Fix for net bug.
This commit is contained in:
parent
08683c8ae7
commit
a445cee717
@ -746,7 +746,7 @@ copy_object (ibfd, obfd)
|
||||
if (max_gap > 8192)
|
||||
max_gap = 8192;
|
||||
buf = (bfd_byte *) xmalloc (max_gap);
|
||||
memset (buf, gap_fill, max_gap);
|
||||
memset (buf, gap_fill, (size_t) max_gap);
|
||||
|
||||
c = bfd_count_sections (obfd);
|
||||
for (i = 0; i < c; i++)
|
||||
@ -1253,6 +1253,9 @@ mark_symbols_used_in_relocations (ibfd, isection, symbolsarg)
|
||||
if (relsize < 0)
|
||||
bfd_fatal (bfd_get_filename (ibfd));
|
||||
|
||||
if (relsize == 0)
|
||||
return 0;
|
||||
|
||||
relpp = (arelent **) xmalloc (relsize);
|
||||
relcount = bfd_canonicalize_reloc (ibfd, isection, relpp, symbols);
|
||||
if (relcount < 0)
|
||||
|
Loading…
x
Reference in New Issue
Block a user