forked from Imagelibrary/binutils-gdb
2006-03-11 H.J. Lu <hongjiu.lu@intel.com>
PR ld/2443 * dwarf2.c (concat_filename): Don't issue an error if file is 0.
This commit is contained in:
@@ -865,8 +865,10 @@ concat_filename (struct line_info_table *table, unsigned int file)
|
||||
|
||||
if (file - 1 >= table->num_files)
|
||||
{
|
||||
(*_bfd_error_handler)
|
||||
(_("Dwarf Error: mangled line number section (bad file number)."));
|
||||
/* FILE == 0 means unknown. */
|
||||
if (file)
|
||||
(*_bfd_error_handler)
|
||||
(_("Dwarf Error: mangled line number section (bad file number)."));
|
||||
return strdup ("<unknown>");
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user