diff options
-rw-r--r-- | gdb/ChangeLog | 5 | ||||
-rw-r--r-- | gdb/solib.c | 6 |
2 files changed, 5 insertions, 6 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 89b787b..b9896ab 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,8 @@ +2013-04-10 Joel Brobecker <brobecker@adacore.com> + + * solib.c (solib_map_sections): Remove code overwriting + SO->SO_NAME with the bfd's filename. + 2013-04-10 Pedro Alves <palves@redhat.com> * cli/cli-decode.c (integer_unlimited_completer): New function. diff --git a/gdb/solib.c b/gdb/solib.c index 8129c0f..6978677 100644 --- a/gdb/solib.c +++ b/gdb/solib.c @@ -465,12 +465,6 @@ solib_map_sections (struct so_list *so) /* Leave bfd open, core_xfer_memory and "info files" need it. */ so->abfd = abfd; - /* copy full path name into so_name, so that later symbol_file_add - can find it. */ - if (strlen (bfd_get_filename (abfd)) >= SO_NAME_MAX_PATH_SIZE) - error (_("Shared library file name is too long.")); - strcpy (so->so_name, bfd_get_filename (abfd)); - if (build_section_table (abfd, &so->sections, &so->sections_end)) { error (_("Can't find the file sections in `%s': %s"), |