diff options
author | Simon Marchi <simon.marchi@polymtl.ca> | 2018-03-08 18:56:23 -0500 |
---|---|---|
committer | Simon Marchi <simon.marchi@ericsson.com> | 2018-03-08 18:56:23 -0500 |
commit | a8dbfd5853e3a5f7f2a3ca817e96d9e0759061a2 (patch) | |
tree | 6afc9df31bdc7097c42d1b0b8d0c994ba354e626 /gdb/symfile.h | |
parent | e6a58aa8a70c7fd17d9930e7df8d158a7e3c8c8e (diff) | |
download | gdb-a8dbfd5853e3a5f7f2a3ca817e96d9e0759061a2.zip gdb-a8dbfd5853e3a5f7f2a3ca817e96d9e0759061a2.tar.gz gdb-a8dbfd5853e3a5f7f2a3ca817e96d9e0759061a2.tar.bz2 |
Make find_separate_debug_file* return std::string
This patch makes the find_separate_debug_file* functions return
std::string, which allows to get rid of some manual memory management
and one cleanup.
gdb/ChangeLog:
* build-id.c (find_separate_debug_file_by_buildid): Return
std::string.
* build-id.h (find_separate_debug_file_by_buildid): Return
std::string.
* coffread.c (coff_symfile_read): Adjust to std::string.
* elfread.c (elf_symfile_read): Adjust to std::string.
* symfile.c (separate_debug_file_exists): Change parameter to
std::string.
(find_separate_debug_file): Return std::string.
(find_separate_debug_file_by_debuglink): Return std::string.
* symfile.h (find_separate_debug_file_by_debuglink): Return
std::string.
Diffstat (limited to 'gdb/symfile.h')
-rw-r--r-- | gdb/symfile.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/symfile.h b/gdb/symfile.h index 7c3fd82..8cd47d8 100644 --- a/gdb/symfile.h +++ b/gdb/symfile.h @@ -426,7 +426,7 @@ extern struct objfile *symbol_file_add_from_bfd (bfd *, const char *, symfile_ad extern void symbol_file_add_separate (bfd *, const char *, symfile_add_flags, struct objfile *); -extern char *find_separate_debug_file_by_debuglink (struct objfile *); +extern std::string find_separate_debug_file_by_debuglink (struct objfile *); /* Create a new section_addr_info, with room for NUM_SECTIONS. */ |