+2019-09-20 Tom Tromey <tom@tromey.com>
+
+ * tui/tui-winsource.h (~tui_source_element): Remove.
+ (tui_source_element): Update.
+ (struct tui_source_element) <line>: Now a unique_xmalloc_ptr.
+ * tui/tui-winsource.c (tui_show_source_line): Update.
+ * tui/tui-source.c (tui_source_window::set_contents): Update.
+ * tui/tui-disasm.c (tui_disasm_window::set_contents): Update.
+
2019-09-20 Tom Tromey <tom@tromey.com>
* tui/tui-data.h (tui_clear_source_windows_detail): Don't
strcpy (line + insn_pos, asm_lines[i].insn);
/* Now copy the line taking the offset into account. */
- xfree (src->line);
if (strlen (line) > offset)
- src->line = xstrndup (&line[offset], line_width);
+ src->line.reset (xstrndup (&line[offset], line_width));
else
- src->line = xstrdup ("");
+ src->line.reset (xstrdup (""));
src->line_or_addr.loa = LOA_ADDRESS;
src->line_or_addr.u.addr = asm_lines[i].addr;
symtab_to_fullname (s)) == 0
&& cur_line_no == locator->line_no);
- xfree (content[cur_line].line);
- content[cur_line].line
- = xstrdup (text.c_str ());
+ content[cur_line].line.reset (xstrdup (text.c_str ()));
cur_line++;
cur_line_no++;
tui_set_reverse_mode (win_info->handle, true);
wmove (win_info->handle, lineno, TUI_EXECINFO_SIZE);
- tui_puts (line->line,
- win_info->handle);
+ tui_puts (line->line.get (), win_info->handle);
if (line->is_exec_point)
tui_set_reverse_mode (win_info->handle, false);
line_or_addr.u.line_no = 0;
}
- ~tui_source_element ()
- {
- xfree (line);
- }
-
DISABLE_COPY_AND_ASSIGN (tui_source_element);
tui_source_element (tui_source_element &&other)
- : line (other.line),
+ : line (std::move (other.line)),
line_or_addr (other.line_or_addr),
is_exec_point (other.is_exec_point),
break_mode (other.break_mode)
{
- other.line = nullptr;
}
- char *line = nullptr;
+ gdb::unique_xmalloc_ptr<char> line;
struct tui_line_or_address line_or_addr;
bool is_exec_point = false;
tui_bp_flags break_mode = 0;