mirror of
https://github.com/bminor/binutils-gdb.git
synced 2025-12-26 01:07:52 +00:00
2011-01-25 Mathieu Lacage <mathieu.lacage@inria.fr>
PR/symtab 11766: * gdb/objfiles.h (struct objfile) <addr_low>: New field. * gdb/solib.c (solib_read_symbols): Check for addr_low in equality test for objfile, initialize addr_low if needed.
This commit is contained in:
@@ -638,7 +638,8 @@ solib_read_symbols (struct so_list *so, int flags)
|
||||
/* Have we already loaded this shared object? */
|
||||
ALL_OBJFILES (so->objfile)
|
||||
{
|
||||
if (strcmp (so->objfile->name, so->so_name) == 0)
|
||||
if (strcmp (so->objfile->name, so->so_name) == 0
|
||||
&& so->objfile->addr_low == so->addr_low)
|
||||
break;
|
||||
}
|
||||
if (so->objfile != NULL)
|
||||
@@ -648,6 +649,7 @@ solib_read_symbols (struct so_list *so, int flags)
|
||||
so->sections_end);
|
||||
so->objfile = symbol_file_add_from_bfd (so->abfd,
|
||||
flags, sap, OBJF_SHARED);
|
||||
so->objfile->addr_low = so->addr_low;
|
||||
free_section_addr_info (sap);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user