aboutsummaryrefslogtreecommitdiff
path: root/gdb/inferior.c
diff options
context:
space:
mode:
authorSimon Marchi <simon.marchi@efficios.com>2020-06-25 14:44:13 -0400
committerSimon Marchi <simon.marchi@efficios.com>2020-06-25 14:44:35 -0400
commit277474eea03e0f77a9d37c69dfab3f0c41812348 (patch)
tree5e415b1644e846c6076f19f4864301301270fb1a /gdb/inferior.c
parentd73be6116811aeaedd1863c2597ede78be3cf4e5 (diff)
downloadgdb-277474eea03e0f77a9d37c69dfab3f0c41812348.zip
gdb-277474eea03e0f77a9d37c69dfab3f0c41812348.tar.gz
gdb-277474eea03e0f77a9d37c69dfab3f0c41812348.tar.bz2
gdb: make inferior::terminal a unique ptr
This changes the inferior::terminal field to be a unique pointer, so its deallocation is automatically managed. gdb/ChangeLog: * inferior.h (struct inferior) <terminal>: Change type to gdb::unique_xmalloc_ptr<char>. * inferior.c (inferior::~inferior): Don't free inf->terminal. * infcmd.c (set_inferior_io_terminal): Don't free terminal field, adjust to unique pointer. (get_inferior_io_terminal): Adjust to unique pointer. Change-Id: Iedb6459b4f9eeae812b0cb9d514b5707d5107cdb
Diffstat (limited to 'gdb/inferior.c')
-rw-r--r--gdb/inferior.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/gdb/inferior.c b/gdb/inferior.c
index 2f4ced0..d3bece0 100644
--- a/gdb/inferior.c
+++ b/gdb/inferior.c
@@ -79,7 +79,6 @@ inferior::~inferior ()
discard_all_inferior_continuations (inf);
inferior_free_data (inf);
xfree (inf->args);
- xfree (inf->terminal);
target_desc_info_free (inf->tdesc_info);
}