aboutsummaryrefslogtreecommitdiff
path: root/gdb/tui/tui-disasm.c
diff options
context:
space:
mode:
authorTom Tromey <tom@tromey.com>2019-09-10 12:56:09 -0600
committerTom Tromey <tom@tromey.com>2019-09-20 13:49:12 -0600
commitf074b67ec812612637342a1647da9158a1e77de0 (patch)
treef0cdc8bf43671b2cc89c0bd9e02167fb826c18e9 /gdb/tui/tui-disasm.c
parent63c4bf1922d5553edb213606270b0e2782bbe4c8 (diff)
downloadgdb-f074b67ec812612637342a1647da9158a1e77de0.zip
gdb-f074b67ec812612637342a1647da9158a1e77de0.tar.gz
gdb-f074b67ec812612637342a1647da9158a1e77de0.tar.bz2
Use make_unique_xstrdup in TUI
This changes a couple of spots in the TUI to use make_unique_xstrdup. This simplifies the code slightly. gdb/ChangeLog 2019-09-20 Tom Tromey <tom@tromey.com> * tui/tui-source.c (tui_source_window::set_contents): Use make_unique_xstrdup. * tui/tui-disasm.c (tui_disasm_window::set_contents): Use make_unique_xstrdup.
Diffstat (limited to 'gdb/tui/tui-disasm.c')
-rw-r--r--gdb/tui/tui-disasm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/tui/tui-disasm.c b/gdb/tui/tui-disasm.c
index 53ea061..51616bc 100644
--- a/gdb/tui/tui-disasm.c
+++ b/gdb/tui/tui-disasm.c
@@ -218,7 +218,7 @@ tui_disasm_window::set_contents (struct gdbarch *arch,
if (line.size() > offset)
src->line.reset (xstrndup (&line[offset], line_width));
else
- src->line.reset (xstrdup (""));
+ src->line = make_unique_xstrdup ("");
src->line_or_addr.loa = LOA_ADDRESS;
src->line_or_addr.u.addr = asm_lines[i].addr;