From 23fdd69e42180578b3e15ba8f053fadde965bfe8 Mon Sep 17 00:00:00 2001 From: Simon Marchi Date: Sun, 3 Sep 2017 10:23:31 +0200 Subject: Make target_waitstatus_to_string return an std::string A quite straightforward change. It does "fix" leaks in record-btrace.c, although since this is only used in debug printing code, it has no real world impact. gdb/ChangeLog: * target/waitstatus.h (target_waitstatus_to_string): Change return type to std::string. * target/waitstatus.c (target_waitstatus_to_string): Return std::string. * target.h (target_waitstatus_to_string): Remove declaration. * infrun.c (resume, clear_proceed_status_thread, print_target_wait_results, do_target_wait, save_waitstatus, stop_all_threads): Adjust. * record-btrace.c (record_btrace_wait): Adjust. * target-debug.h (target_debug_print_struct_target_waitstatus_p): Adjust. gdb/gdbserver/ChangeLog: * linux-low.c (linux_wait_1): Adjust. * server.c (queue_stop_reply_callback): Adjust. --- gdb/target-debug.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'gdb/target-debug.h') diff --git a/gdb/target-debug.h b/gdb/target-debug.h index 6923608..532e98d 100644 --- a/gdb/target-debug.h +++ b/gdb/target-debug.h @@ -166,10 +166,9 @@ static void target_debug_print_struct_target_waitstatus_p (struct target_waitstatus *status) { - char *str = target_waitstatus_to_string (status); + std::string str = target_waitstatus_to_string (status); - fputs_unfiltered (str, gdb_stdlog); - xfree (str); + fputs_unfiltered (str.c_str (), gdb_stdlog); } -- cgit v1.1