aboutsummaryrefslogtreecommitdiff
path: root/gdb/mi
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@efficios.com>2023-10-08 01:16:29 +0000
committerSimon Marchi <simon.marchi@efficios.com>2023-10-19 10:57:51 -0400
commit98107b0b17acd9d2c28829cbe93a75b72677d220 (patch)
treefcbc63a8764ed76342d61e040e92cc2f61a8764e /gdb/mi
parent200b85632a99e749e14d1c026b7e24c15a5e2776 (diff)
downloadgdb-98107b0b17acd9d2c28829cbe93a75b72677d220.zip
gdb-98107b0b17acd9d2c28829cbe93a75b72677d220.tar.gz
gdb-98107b0b17acd9d2c28829cbe93a75b72677d220.tar.bz2
gdb: make so_list::{so_original_name,so_name} std::strings
Change these two fields, simplifying memory management and copying. Change-Id: If2559284c515721e71e1ef56ada8b64667eebe55 Approved-By: Pedro Alves <pedro@palves.net> Reviewed-By: Reviewed-By: Lancelot Six <lancelot.six@amd.com>
Diffstat (limited to 'gdb/mi')
-rw-r--r--gdb/mi/mi-cmd-file.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/gdb/mi/mi-cmd-file.c b/gdb/mi/mi-cmd-file.c
index 822d3df..30682da 100644
--- a/gdb/mi/mi-cmd-file.c
+++ b/gdb/mi/mi-cmd-file.c
@@ -165,9 +165,10 @@ mi_cmd_file_list_shared_libraries (const char *command,
for (struct so_list *so : current_program_space->solibs ())
{
- if (so->so_name[0] == '\0')
+ if (so->so_name.empty ())
continue;
- if (pattern != NULL && !re_exec (so->so_name))
+
+ if (pattern != nullptr && !re_exec (so->so_name.c_str ()))
continue;
ui_out_emit_tuple tuple_emitter (uiout, NULL);