2009-03-16 Andrew Stubbs <ams@codesourcery.com>

* dwarf2.c (read_section): Always use rawsize, if available.
This commit is contained in:
Andrew Stubbs 2009-03-16 12:41:26 +00:00
parent ba30a4e951
commit bc66479972
2 changed files with 5 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2009-03-16 Andrew Stubbs <ams@codesourcery.com>
* dwarf2.c (read_section): Always use rawsize, if available.
2009-03-01 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
Backport from git Libtool:

View File

@ -432,9 +432,9 @@ read_section (bfd * abfd,
return FALSE;
}
*section_size = msec->rawsize ? msec->rawsize : msec->size;
if (syms)
{
*section_size = msec->size;
*section_buffer
= bfd_simple_get_relocated_section_contents (abfd, msec, NULL, syms);
if (! *section_buffer)
@ -442,7 +442,6 @@ read_section (bfd * abfd,
}
else
{
*section_size = msec->rawsize ? msec->rawsize : msec->size;
*section_buffer = bfd_malloc (*section_size);
if (! *section_buffer)
return FALSE;