* 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:
Jeff Law 1995-08-05 06:18:31 +00:00
parent 08683c8ae7
commit a445cee717
1 changed files with 4 additions and 1 deletions

View File

@ -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)